| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 "build/build_config.h" | 5 #include "build/build_config.h" |
| 6 #include "extensions/common/manifest_constants.h" | 6 #include "extensions/common/manifest_constants.h" |
| 7 | 7 |
| 8 namespace extensions { | 8 namespace extensions { |
| 9 | 9 |
| 10 namespace manifest_keys { | 10 namespace manifest_keys { |
| 11 | 11 |
| 12 const char kAboutPage[] = "about_page"; | 12 const char kAboutPage[] = "about_page"; |
| 13 const char kActionHandlers[] = "action_handlers"; |
| 13 const char kAllFrames[] = "all_frames"; | 14 const char kAllFrames[] = "all_frames"; |
| 14 const char kAltKey[] = "altKey"; | 15 const char kAltKey[] = "altKey"; |
| 15 const char kApp[] = "app"; | 16 const char kApp[] = "app"; |
| 16 const char kAppIconColor[] = "app.icon_color"; | 17 const char kAppIconColor[] = "app.icon_color"; |
| 17 const char kAutomation[] = "automation"; | 18 const char kAutomation[] = "automation"; |
| 18 const char kBackgroundAllowJsAccess[] = "background.allow_js_access"; | 19 const char kBackgroundAllowJsAccess[] = "background.allow_js_access"; |
| 19 const char kBackgroundPage[] = "background.page"; | 20 const char kBackgroundPage[] = "background.page"; |
| 20 const char kBackgroundPageLegacy[] = "background_page"; | 21 const char kBackgroundPageLegacy[] = "background_page"; |
| 21 const char kBackgroundPersistent[] = "background.persistent"; | 22 const char kBackgroundPersistent[] = "background.persistent"; |
| 22 const char kBackgroundScripts[] = "background.scripts"; | 23 const char kBackgroundScripts[] = "background.scripts"; |
| (...skipping 717 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 740 "'file_system_provider_capabilities' section to be specified in the " | 741 "'file_system_provider_capabilities' section to be specified in the " |
| 741 "manifest."; | 742 "manifest."; |
| 742 const char kInvalidFileSystemProviderMissingPermission[] = | 743 const char kInvalidFileSystemProviderMissingPermission[] = |
| 743 "The 'file_system_provider_capabilities' section requires the " | 744 "The 'file_system_provider_capabilities' section requires the " |
| 744 "'fileSystemProvider' permission to be specified in the manifest."; | 745 "'fileSystemProvider' permission to be specified in the manifest."; |
| 745 #endif | 746 #endif |
| 746 | 747 |
| 747 } // namespace manifest_errors | 748 } // namespace manifest_errors |
| 748 | 749 |
| 749 } // namespace extensions | 750 } // namespace extensions |
| OLD | NEW |