Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(224)

Side by Side Diff: extensions/common/manifest_constants.cc

Issue 145663004: Replace "bluetooth" permission with manifest property. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove unused function. Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « extensions/common/manifest_constants.h ('k') | extensions/common/permissions/api_permission.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 "extensions/common/manifest_constants.h" 5 #include "extensions/common/manifest_constants.h"
6 6
7 namespace extensions { 7 namespace extensions {
8 8
9 namespace manifest_keys { 9 namespace manifest_keys {
10 10
11 const char kAllFrames[] = "all_frames"; 11 const char kAllFrames[] = "all_frames";
12 const char kAltKey[] = "altKey"; 12 const char kAltKey[] = "altKey";
13 const char kApp[] = "app"; 13 const char kApp[] = "app";
14 const char kBackgroundAllowJsAccess[] = "background.allow_js_access"; 14 const char kBackgroundAllowJsAccess[] = "background.allow_js_access";
15 const char kBackgroundPage[] = "background.page"; 15 const char kBackgroundPage[] = "background.page";
16 const char kBackgroundPageLegacy[] = "background_page"; 16 const char kBackgroundPageLegacy[] = "background_page";
17 const char kBackgroundPersistent[] = "background.persistent"; 17 const char kBackgroundPersistent[] = "background.persistent";
18 const char kBackgroundScripts[] = "background.scripts"; 18 const char kBackgroundScripts[] = "background.scripts";
19 const char kBluetooth[] = "bluetooth";
19 const char kBookmarkUI[] = "chrome_settings_overrides.bookmarks_ui"; 20 const char kBookmarkUI[] = "chrome_settings_overrides.bookmarks_ui";
20 const char kBrowserAction[] = "browser_action"; 21 const char kBrowserAction[] = "browser_action";
21 const char kChromeURLOverrides[] = "chrome_url_overrides"; 22 const char kChromeURLOverrides[] = "chrome_url_overrides";
22 const char kCommands[] = "commands"; 23 const char kCommands[] = "commands";
23 const char kContentPack[] = "content_pack"; 24 const char kContentPack[] = "content_pack";
24 const char kContentPackSites[] = "sites"; 25 const char kContentPackSites[] = "sites";
25 const char kContentScripts[] = "content_scripts"; 26 const char kContentScripts[] = "content_scripts";
26 const char kContentSecurityPolicy[] = "content_security_policy"; 27 const char kContentSecurityPolicy[] = "content_security_policy";
27 const char kConvertedFromUserScript[] = "converted_from_user_script"; 28 const char kConvertedFromUserScript[] = "converted_from_user_script";
28 const char kCss[] = "css"; 29 const char kCss[] = "css";
(...skipping 672 matching lines...) Expand 10 before | Expand all | Expand 10 after
701 const char kWebRequestConflictsWithLazyBackground[] = 702 const char kWebRequestConflictsWithLazyBackground[] =
702 "The 'webRequest' API cannot be used with event pages."; 703 "The 'webRequest' API cannot be used with event pages.";
703 #if defined(OS_CHROMEOS) 704 #if defined(OS_CHROMEOS)
704 const char kIllegalPlugins[] = 705 const char kIllegalPlugins[] =
705 "Extensions cannot install plugins on Chrome OS"; 706 "Extensions cannot install plugins on Chrome OS";
706 #endif 707 #endif
707 708
708 } // namespace manifest_errors 709 } // namespace manifest_errors
709 710
710 } // namespace extensions 711 } // namespace extensions
OLDNEW
« no previous file with comments | « extensions/common/manifest_constants.h ('k') | extensions/common/permissions/api_permission.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698