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 "extensions/common/manifest_constants.h" | 6 #include "extensions/common/manifest_constants.h" |
6 | 7 |
7 namespace extensions { | 8 namespace extensions { |
8 | 9 |
9 namespace manifest_keys { | 10 namespace manifest_keys { |
10 | 11 |
11 const char kAboutPage[] = "about_page"; | 12 const char kAboutPage[] = "about_page"; |
12 const char kAllFrames[] = "all_frames"; | 13 const char kAllFrames[] = "all_frames"; |
13 const char kAltKey[] = "altKey"; | 14 const char kAltKey[] = "altKey"; |
14 const char kApp[] = "app"; | 15 const char kApp[] = "app"; |
(...skipping 712 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
727 "'file_system_provider_capabilities' section to be specified in the " | 728 "'file_system_provider_capabilities' section to be specified in the " |
728 "manifest."; | 729 "manifest."; |
729 const char kInvalidFileSystemProviderMissingPermission[] = | 730 const char kInvalidFileSystemProviderMissingPermission[] = |
730 "The 'file_system_provider_capabilities' section requires the " | 731 "The 'file_system_provider_capabilities' section requires the " |
731 "'fileSystemProvider' permission to be specified in the manifest."; | 732 "'fileSystemProvider' permission to be specified in the manifest."; |
732 #endif | 733 #endif |
733 | 734 |
734 } // namespace manifest_errors | 735 } // namespace manifest_errors |
735 | 736 |
736 } // namespace extensions | 737 } // namespace extensions |
OLD | NEW |