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

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

Issue 65123002: Move chrome/common/extensions/background_info.h to src/extensions (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix ios, browser_tests Created 7 years, 1 month 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 | Annotate | Revision Log
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/switches.h" 5 #include "extensions/common/switches.h"
6 6
7 namespace extensions { 7 namespace extensions {
8 8
9 namespace switches { 9 namespace switches {
10 10
11 // Allows non-https URL for background_page for hosted apps.
12 const char kAllowHTTPBackgroundPage[] = "allow-http-background-page";
13
11 // Allows the browser to load extensions that lack a modern manifest when that 14 // Allows the browser to load extensions that lack a modern manifest when that
12 // would otherwise be forbidden. 15 // would otherwise be forbidden.
13 const char kAllowLegacyExtensionManifests[] = 16 const char kAllowLegacyExtensionManifests[] =
14 "allow-legacy-extension-manifests"; 17 "allow-legacy-extension-manifests";
15 18
16 // Allows injecting extensions and user scripts on the extensions gallery 19 // Allows injecting extensions and user scripts on the extensions gallery
17 // site. Normally prevented for security reasons, but can be useful for 20 // site. Normally prevented for security reasons, but can be useful for
18 // automation testing of the gallery. 21 // automation testing of the gallery.
19 const char kAllowScriptingGallery[] = "allow-scripting-gallery"; 22 const char kAllowScriptingGallery[] = "allow-scripting-gallery";
20 23
(...skipping 18 matching lines...) Expand all
39 // manifest. 42 // manifest.
40 const char kExtensionsOnChromeURLs[] = "extensions-on-chrome-urls"; 43 const char kExtensionsOnChromeURLs[] = "extensions-on-chrome-urls";
41 44
42 // Makes component extensions appear in chrome://settings/extensions. 45 // Makes component extensions appear in chrome://settings/extensions.
43 const char kShowComponentExtensionOptions[] = 46 const char kShowComponentExtensionOptions[] =
44 "show-component-extension-options"; 47 "show-component-extension-options";
45 48
46 } // namespace switches 49 } // namespace switches
47 50
48 } // namespace extensions 51 } // namespace extensions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698