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_MANIFEST_CONSTANTS_H_ | 5 #ifndef CHROME_COMMON_EXTENSIONS_EXTENSION_MANIFEST_CONSTANTS_H_ |
6 #define CHROME_COMMON_EXTENSIONS_EXTENSION_MANIFEST_CONSTANTS_H_ | 6 #define CHROME_COMMON_EXTENSIONS_EXTENSION_MANIFEST_CONSTANTS_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
(...skipping 22 matching lines...) Expand all Loading... |
33 extern const char kCtrlKey[]; | 33 extern const char kCtrlKey[]; |
34 extern const char kCurrentLocale[]; | 34 extern const char kCurrentLocale[]; |
35 extern const char kDefaultLocale[]; | 35 extern const char kDefaultLocale[]; |
36 extern const char kDescription[]; | 36 extern const char kDescription[]; |
37 extern const char kDevToolsPage[]; | 37 extern const char kDevToolsPage[]; |
38 extern const char kDisplayInLauncher[]; | 38 extern const char kDisplayInLauncher[]; |
39 extern const char kDisplayInNewTabPage[]; | 39 extern const char kDisplayInNewTabPage[]; |
40 extern const char kEventName[]; | 40 extern const char kEventName[]; |
41 extern const char kExcludeGlobs[]; | 41 extern const char kExcludeGlobs[]; |
42 extern const char kExcludeMatches[]; | 42 extern const char kExcludeMatches[]; |
| 43 extern const char kExternallyConnectable[]; |
43 extern const char kFileAccessList[]; | 44 extern const char kFileAccessList[]; |
44 extern const char kFileHandlers[]; | 45 extern const char kFileHandlers[]; |
45 extern const char kFileHandlerTitle[]; | 46 extern const char kFileHandlerTitle[]; |
46 extern const char kFileHandlerTypes[]; | 47 extern const char kFileHandlerTypes[]; |
47 extern const char kFileFilters[]; | 48 extern const char kFileFilters[]; |
48 extern const char kFileBrowserHandlers[]; | 49 extern const char kFileBrowserHandlers[]; |
49 extern const char kMediaGalleriesHandlers[]; | 50 extern const char kMediaGalleriesHandlers[]; |
50 extern const char kHomepageURL[]; | 51 extern const char kHomepageURL[]; |
51 extern const char kIcons[]; | 52 extern const char kIcons[]; |
52 extern const char kId[]; | 53 extern const char kId[]; |
(...skipping 310 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
363 extern const char kScriptBadgeRequiresFlag[]; | 364 extern const char kScriptBadgeRequiresFlag[]; |
364 extern const char kScriptBadgeIconIgnored[]; | 365 extern const char kScriptBadgeIconIgnored[]; |
365 extern const char kScriptBadgeTitleIgnored[]; | 366 extern const char kScriptBadgeTitleIgnored[]; |
366 extern const char kWebRequestConflictsWithLazyBackground[]; | 367 extern const char kWebRequestConflictsWithLazyBackground[]; |
367 #if defined(OS_CHROMEOS) | 368 #if defined(OS_CHROMEOS) |
368 extern const char kIllegalPlugins[]; | 369 extern const char kIllegalPlugins[]; |
369 #endif | 370 #endif |
370 } // namespace extension_manifest_errors | 371 } // namespace extension_manifest_errors |
371 | 372 |
372 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_MANIFEST_CONSTANTS_H_ | 373 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_MANIFEST_CONSTANTS_H_ |
OLD | NEW |