intent_constants.cc 533 B

1234567891011121314
  1. // Copyright 2016 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. #include "components/arc/intent_helper/intent_constants.h"
  5. namespace arc {
  6. const char kIntentActionMain[] = "android.intent.action.MAIN";
  7. const char kIntentActionView[] = "android.intent.action.VIEW";
  8. const char kIntentActionSend[] = "android.intent.action.SEND";
  9. const char kIntentActionSendMultiple[] = "android.intent.action.SEND_MULTIPLE";
  10. } // namespace arc