Chromium Code Reviews| Index: chrome/common/extensions/extension_constants.cc |
| diff --git a/chrome/common/extensions/extension_constants.cc b/chrome/common/extensions/extension_constants.cc |
| index dd15afa7da8c8ad76ac4a81d928f42ac37423fe9..483bb8efc5e0b4d4518e3588b10a4afb7f535503 100644 |
| --- a/chrome/common/extensions/extension_constants.cc |
| +++ b/chrome/common/extensions/extension_constants.cc |
| @@ -23,6 +23,8 @@ const char* kHomepageURL = "homepage_url"; |
| const char* kIcons = "icons"; |
| const char* kIncognito = "incognito"; |
| const char* kIncludeGlobs = "include_globs"; |
| +const char* kIsolatedStorage = "storage"; |
|
Matt Perry
2011/01/26 20:09:23
nit: this seems like it belongs more in extension_
Charlie Reis
2011/03/01 21:33:11
Done.
|
| +const char* kIsolation = "app.isolation"; |
| const char* kJs = "js"; |
| const char* kLaunch = "app.launch"; |
| const char* kLaunchContainer = "app.launch.container"; |
| @@ -144,6 +146,10 @@ const char* kInvalidIcons = |
| "Invalid value for 'icons'."; |
| const char* kInvalidIncognitoBehavior = |
| "Invalid value for 'incognito'."; |
| +const char* kInvalidIsolation = |
| + "Invalid value for 'app.isolation'."; |
| +const char* kInvalidIsolationValue = |
| + "Invalid value for 'app.isolation[*]'."; |
| const char* kInvalidJs = |
| "Invalid value for 'content_scripts[*].js[*]'."; |
| const char* kInvalidJsList = |