intent_constants.h 693 B

12345678910111213141516171819
  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. #ifndef COMPONENTS_ARC_INTENT_HELPER_INTENT_CONSTANTS_H_
  5. #define COMPONENTS_ARC_INTENT_HELPER_INTENT_CONSTANTS_H_
  6. namespace arc {
  7. // Well-known Android intent actions, e.g. "android.intent.action.VIEW"
  8. // (corresponding to Android's android.content.Intent.ACTION_VIEW constant).
  9. extern const char kIntentActionMain[];
  10. extern const char kIntentActionView[];
  11. extern const char kIntentActionSend[];
  12. extern const char kIntentActionSendMultiple[];
  13. } // namespace arc
  14. #endif // COMPONENTS_ARC_INTENT_HELPER_INTENT_CONSTANTS_H_