1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
ash / components / arc / intent_helper / intent_constants.h [blame]
// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef ASH_COMPONENTS_ARC_INTENT_HELPER_INTENT_CONSTANTS_H_
#define ASH_COMPONENTS_ARC_INTENT_HELPER_INTENT_CONSTANTS_H_
namespace arc {
// Well-known Android intent actions, e.g. "android.intent.action.VIEW"
// (corresponding to Android's android.content.Intent.ACTION_VIEW constant).
extern const char kIntentActionMain[];
extern const char kIntentActionView[];
extern const char kIntentActionSend[];
extern const char kIntentActionSendMultiple[];
} // namespace arc
#endif // ASH_COMPONENTS_ARC_INTENT_HELPER_INTENT_CONSTANTS_H_