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 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 | 10 |
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
161 extern const char kCannotUninstallManagedExtension[]; | 161 extern const char kCannotUninstallManagedExtension[]; |
162 extern const char kChromeVersionTooLow[]; | 162 extern const char kChromeVersionTooLow[]; |
163 extern const char kDevToolsExperimental[]; | 163 extern const char kDevToolsExperimental[]; |
164 extern const char kDisabledByPolicy[]; | 164 extern const char kDisabledByPolicy[]; |
165 extern const char kExperimentalFlagRequired[]; | 165 extern const char kExperimentalFlagRequired[]; |
166 extern const char kExpectString[]; | 166 extern const char kExpectString[]; |
167 extern const char kFeatureNotAllowed[]; | 167 extern const char kFeatureNotAllowed[]; |
168 extern const char kInvalidAllFrames[]; | 168 extern const char kInvalidAllFrames[]; |
169 extern const char kInvalidBackground[]; | 169 extern const char kInvalidBackground[]; |
170 extern const char kInvalidBackgroundAllowJsAccess[]; | 170 extern const char kInvalidBackgroundAllowJsAccess[]; |
171 extern const char kInvalidBackgroundAllowJsAccessNoPage[]; | |
172 extern const char kInvalidBackgroundCombination[]; | 171 extern const char kInvalidBackgroundCombination[]; |
173 extern const char kInvalidBackgroundScript[]; | 172 extern const char kInvalidBackgroundScript[]; |
174 extern const char kInvalidBackgroundScripts[]; | 173 extern const char kInvalidBackgroundScripts[]; |
175 extern const char kInvalidBackgroundInHostedApp[]; | 174 extern const char kInvalidBackgroundInHostedApp[]; |
176 extern const char kInvalidBackgroundPersistent[]; | 175 extern const char kInvalidBackgroundPersistent[]; |
177 extern const char kInvalidBackgroundPersistentNoPage[]; | 176 extern const char kInvalidBackgroundPersistentNoPage[]; |
178 extern const char kInvalidBrowserAction[]; | 177 extern const char kInvalidBrowserAction[]; |
179 extern const char kInvalidBrowseURL[]; | 178 extern const char kInvalidBrowseURL[]; |
180 extern const char kInvalidBrowseURLs[]; | 179 extern const char kInvalidBrowseURLs[]; |
181 extern const char kInvalidChromeURLOverrides[]; | 180 extern const char kInvalidChromeURLOverrides[]; |
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
304 extern const char kPermissionNotAllowed[]; | 303 extern const char kPermissionNotAllowed[]; |
305 extern const char kOneUISurfaceOnly[]; | 304 extern const char kOneUISurfaceOnly[]; |
306 extern const char kReservedMessageFound[]; | 305 extern const char kReservedMessageFound[]; |
307 extern const char kWebContentMustBeEnabled[]; | 306 extern const char kWebContentMustBeEnabled[]; |
308 #if defined(OS_CHROMEOS) | 307 #if defined(OS_CHROMEOS) |
309 extern const char kIllegalPlugins[]; | 308 extern const char kIllegalPlugins[]; |
310 #endif | 309 #endif |
311 } // namespace extension_manifest_errors | 310 } // namespace extension_manifest_errors |
312 | 311 |
313 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_MANIFEST_CONSTANTS_H_ | 312 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_MANIFEST_CONSTANTS_H_ |
OLD | NEW |