| 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 #include "chrome/common/extensions/extension_manifest_constants.h" | 5 #include "chrome/common/extensions/extension_manifest_constants.h" |
| 6 | 6 |
| 7 namespace extension_manifest_keys { | 7 namespace extension_manifest_keys { |
| 8 | 8 |
| 9 const char kAllFrames[] = "all_frames"; | 9 const char kAllFrames[] = "all_frames"; |
| 10 const char kAltKey[] = "altKey"; | 10 const char kAltKey[] = "altKey"; |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 const char kOAuth2[] = "oauth2"; | 70 const char kOAuth2[] = "oauth2"; |
| 71 const char kOAuth2ClientId[] = "oauth2.client_id"; | 71 const char kOAuth2ClientId[] = "oauth2.client_id"; |
| 72 const char kOAuth2Scopes[] = "oauth2.scopes"; | 72 const char kOAuth2Scopes[] = "oauth2.scopes"; |
| 73 const char kOfflineEnabled[] = "offline_enabled"; | 73 const char kOfflineEnabled[] = "offline_enabled"; |
| 74 const char kOmnibox[] = "omnibox"; | 74 const char kOmnibox[] = "omnibox"; |
| 75 const char kOmniboxKeyword[] = "omnibox.keyword"; | 75 const char kOmniboxKeyword[] = "omnibox.keyword"; |
| 76 const char kOptionalPermissions[] = "optional_permissions"; | 76 const char kOptionalPermissions[] = "optional_permissions"; |
| 77 const char kOptionsPage[] = "options_page"; | 77 const char kOptionsPage[] = "options_page"; |
| 78 const char kPageAction[] = "page_action"; | 78 const char kPageAction[] = "page_action"; |
| 79 const char kPageActionDefaultIcon[] = "default_icon"; | 79 const char kPageActionDefaultIcon[] = "default_icon"; |
| 80 const char kPageActionDefaultIconSet[] = "default_icon_set"; |
| 80 const char kPageActionDefaultPopup[] = "default_popup"; | 81 const char kPageActionDefaultPopup[] = "default_popup"; |
| 81 const char kPageActionDefaultTitle[] = "default_title"; | 82 const char kPageActionDefaultTitle[] = "default_title"; |
| 82 const char kPageActionIcons[] = "icons"; | 83 const char kPageActionIcons[] = "icons"; |
| 83 const char kPageActionId[] = "id"; | 84 const char kPageActionId[] = "id"; |
| 84 const char kPageActionPopup[] = "popup"; | 85 const char kPageActionPopup[] = "popup"; |
| 85 const char kPageActionPopupPath[] = "path"; | 86 const char kPageActionPopupPath[] = "path"; |
| 86 const char kPageActions[] = "page_actions"; | 87 const char kPageActions[] = "page_actions"; |
| 87 const char kPermissions[] = "permissions"; | 88 const char kPermissions[] = "permissions"; |
| 88 const char kPlatformAppBackground[] = "app.background"; | 89 const char kPlatformAppBackground[] = "app.background"; |
| 89 const char kPlatformAppBackgroundPage[] = "app.background.page"; | 90 const char kPlatformAppBackgroundPage[] = "app.background.page"; |
| (...skipping 405 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 495 const char kScriptBadgeTitleIgnored[] = | 496 const char kScriptBadgeTitleIgnored[] = |
| 496 "default_title specified in script_badge manifest section will not be " | 497 "default_title specified in script_badge manifest section will not be " |
| 497 "used."; | 498 "used."; |
| 498 const char kWebRequestConflictsWithLazyBackground[] = | 499 const char kWebRequestConflictsWithLazyBackground[] = |
| 499 "The 'webRequest' API cannot be used with event pages."; | 500 "The 'webRequest' API cannot be used with event pages."; |
| 500 #if defined(OS_CHROMEOS) | 501 #if defined(OS_CHROMEOS) |
| 501 const char kIllegalPlugins[] = | 502 const char kIllegalPlugins[] = |
| 502 "Extensions cannot install plugins on Chrome OS"; | 503 "Extensions cannot install plugins on Chrome OS"; |
| 503 #endif | 504 #endif |
| 504 } // namespace extension_manifest_errors | 505 } // namespace extension_manifest_errors |
| OLD | NEW |