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

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

Issue 324393002: Extension Toolbar redesign, part 1 (overflow) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Ready for review Created 6 years, 6 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 | Annotate | Revision Log
« extensions/common/switches.h ('K') | « extensions/common/switches.h ('k') | no next file » | 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/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
(...skipping 17 matching lines...) Expand all
28 const char kErrorConsole[] = "error-console"; 28 const char kErrorConsole[] = "error-console";
29 29
30 // The time in milliseconds that an extension event page can be idle before it 30 // The time in milliseconds that an extension event page can be idle before it
31 // is shut down. 31 // is shut down.
32 const char kEventPageIdleTime[] = "event-page-idle-time"; 32 const char kEventPageIdleTime[] = "event-page-idle-time";
33 33
34 // The time in milliseconds that an extension event page has between being 34 // The time in milliseconds that an extension event page has between being
35 // notified of its impending unload and that unload happening. 35 // notified of its impending unload and that unload happening.
36 const char kEventPageSuspendingTime[] = "event-page-unloading-time"; 36 const char kEventPageSuspendingTime[] = "event-page-unloading-time";
37 37
38 // Whether to switch to extension action redesign mode (experimental).
39 const char kExtensionActionRedesign[] = "extension-action-redesign";
40
38 // Values for the kExtensionContentVerification flag. See ContentVerifier::Mode 41 // Values for the kExtensionContentVerification flag. See ContentVerifier::Mode
39 // for more explanation. 42 // for more explanation.
40 const char kExtensionContentVerificationBootstrap[] = "bootstrap"; 43 const char kExtensionContentVerificationBootstrap[] = "bootstrap";
41 const char kExtensionContentVerificationEnforceStrict[] = "enforce_strict"; 44 const char kExtensionContentVerificationEnforceStrict[] = "enforce_strict";
42 const char kExtensionContentVerificationEnforce[] = "enforce"; 45 const char kExtensionContentVerificationEnforce[] = "enforce";
43 46
44 // Name of the command line flag to force content verification to be on in one 47 // Name of the command line flag to force content verification to be on in one
45 // of various modes. 48 // of various modes.
46 const char kExtensionContentVerification[] = "extension-content-verification"; 49 const char kExtensionContentVerification[] = "extension-content-verification";
47 50
(...skipping 25 matching lines...) Expand all
73 // Makes component extensions appear in chrome://settings/extensions. 76 // Makes component extensions appear in chrome://settings/extensions.
74 const char kShowComponentExtensionOptions[] = 77 const char kShowComponentExtensionOptions[] =
75 "show-component-extension-options"; 78 "show-component-extension-options";
76 79
77 // Adds the given extension ID to all the permission whitelists. 80 // Adds the given extension ID to all the permission whitelists.
78 const char kWhitelistedExtensionID[] = "whitelisted-extension-id"; 81 const char kWhitelistedExtensionID[] = "whitelisted-extension-id";
79 82
80 } // namespace switches 83 } // namespace switches
81 84
82 } // namespace extensions 85 } // namespace extensions
OLDNEW
« extensions/common/switches.h ('K') | « extensions/common/switches.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698