| Index: chrome/common/extensions/extension_constants.cc
|
| diff --git a/chrome/common/extensions/extension_constants.cc b/chrome/common/extensions/extension_constants.cc
|
| index e61e8f659c0cb67bc2efcf885a13308f7ebae0d3..2d98f315999b52c3057e9f3c57ba9a76a4a66987 100644
|
| --- a/chrome/common/extensions/extension_constants.cc
|
| +++ b/chrome/common/extensions/extension_constants.cc
|
| @@ -38,6 +38,11 @@ const char* kId = "id";
|
| const char* kIncognito = "incognito";
|
| const char* kIncludeGlobs = "include_globs";
|
| const char* kInputComponents = "input_components";
|
| +const char* kIntents = "intents";
|
| +const char* kIntentType = "type";
|
| +const char* kIntentAction = "action";
|
| +const char* kIntentTitle = "title";
|
| +const char* kIntentDisposition = "disposition";
|
| const char* kIsolation = "app.isolation";
|
| const char* kJs = "js";
|
| const char* kKeycode = "keyCode";
|
| @@ -113,6 +118,8 @@ const char* kWebURLs = "app.urls";
|
| namespace extension_manifest_values {
|
| const char* kIncognitoSplit = "split";
|
| const char* kIncognitoSpanning = "spanning";
|
| +const char* kIntentDispositionWindow = "window";
|
| +const char* kIntentDispositionInline = "inline";
|
| const char* kIsolatedStorage = "storage";
|
| const char* kRunAtDocumentStart = "document_start";
|
| const char* kRunAtDocumentEnd = "document_end";
|
| @@ -226,6 +233,18 @@ const char* kInvalidInputComponentShortcutKeycode =
|
| "Invalid value for 'input_conponents[*].shortcutKey.keyCode";
|
| const char* kInvalidInputComponentType =
|
| "Invalid value for 'input_conponents[*].type";
|
| +const char* kInvalidIntent =
|
| + "Invalid value for intents[*]";
|
| +const char* kInvalidIntentDisposition =
|
| + "Invalid value for intents[*].disposition";
|
| +const char* kInvalidIntentAction =
|
| + "Invalid value for intents[*].action";
|
| +const char* kInvalidIntents =
|
| + "Invalid value for intents";
|
| +const char* kInvalidIntentType =
|
| + "Invalid value for intents[*].type";
|
| +const char* kInvalidIntentTitle =
|
| + "Invalid value for intents[*].title";
|
| const char* kInvalidIsolation =
|
| "Invalid value for 'app.isolation'.";
|
| const char* kInvalidIsolationValue =
|
|
|