OLD | NEW |
---|---|
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ | 5 #ifndef CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ |
6 #define CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ | 6 #define CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ |
7 | 7 |
8 #include <stdint.h> | 8 #include <stdint.h> |
9 | 9 |
10 #include <string> | 10 #include <string> |
(...skipping 16 matching lines...) Expand all Loading... | |
27 extern const char kLaunchSourceAppListSearch[]; | 27 extern const char kLaunchSourceAppListSearch[]; |
28 extern const char kLaunchSourceAppListInfoDialog[]; | 28 extern const char kLaunchSourceAppListInfoDialog[]; |
29 | 29 |
30 } // namespace extension_urls | 30 } // namespace extension_urls |
31 | 31 |
32 namespace extension_misc { | 32 namespace extension_misc { |
33 | 33 |
34 // The extension id of the bookmark manager. | 34 // The extension id of the bookmark manager. |
35 extern const char kBookmarkManagerId[]; | 35 extern const char kBookmarkManagerId[]; |
36 | 36 |
37 // The extension id of the Material Design bookmark manager. | |
38 extern const char kMDBookmarkManagerId[]; | |
Dan Beam
2016/10/25 18:05:51
arguuuuuuuuably kMdBookmarkManagerId
calamity
2016/10/28 05:58:22
git grep approves.
| |
39 | |
37 // The extension id of the Chrome component application. | 40 // The extension id of the Chrome component application. |
38 extern const char kChromeAppId[]; | 41 extern const char kChromeAppId[]; |
39 | 42 |
40 // The extension id of the Cloud Print component application. | 43 // The extension id of the Cloud Print component application. |
41 extern const char kCloudPrintAppId[]; | 44 extern const char kCloudPrintAppId[]; |
42 | 45 |
43 // The extension id of the Data Saver extension. | 46 // The extension id of the Data Saver extension. |
44 extern const char kDataSaverExtensionId[]; | 47 extern const char kDataSaverExtensionId[]; |
45 | 48 |
46 // The extension id of the Drive extension. | 49 // The extension id of the Drive extension. |
(...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
252 extern const char kMediaFileSystemPathPart[]; | 255 extern const char kMediaFileSystemPathPart[]; |
253 | 256 |
254 #if defined(OS_CHROMEOS) | 257 #if defined(OS_CHROMEOS) |
255 // Returns true if |extension_id| is one of the IME extensions that will create | 258 // Returns true if |extension_id| is one of the IME extensions that will create |
256 // IME menu. | 259 // IME menu. |
257 bool IsImeMenuExtensionId(const std::string& extension_id); | 260 bool IsImeMenuExtensionId(const std::string& extension_id); |
258 #endif | 261 #endif |
259 } // namespace extension_misc | 262 } // namespace extension_misc |
260 | 263 |
261 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ | 264 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ |
OLD | NEW |