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

Side by Side Diff: chrome/common/chrome_switches.cc

Issue 251993002: [Mac] Implement frame.[color|inactiveColor]. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Only SetFullScreenCollectionBehavior on Lion or later. Created 6 years, 7 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
« no previous file with comments | « chrome/common/chrome_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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "chrome/common/chrome_switches.h" 5 #include "chrome/common/chrome_switches.h"
6 6
7 #include "base/base_switches.h" 7 #include "base/base_switches.h"
8 #include "base/command_line.h" 8 #include "base/command_line.h"
9 9
10 namespace switches { 10 namespace switches {
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 96
97 // Value of GAIA auth code for --force-app-mode. 97 // Value of GAIA auth code for --force-app-mode.
98 const char kAppModeAuthCode[] = "app-mode-auth-code"; 98 const char kAppModeAuthCode[] = "app-mode-auth-code";
99 99
100 // Value of OAuth2 refresh token for --force-app-mode. 100 // Value of OAuth2 refresh token for --force-app-mode.
101 const char kAppModeOAuth2Token[] = "app-mode-oauth-token"; 101 const char kAppModeOAuth2Token[] = "app-mode-oauth-token";
102 102
103 // Whether to always use the new app install bubble when installing an app. 103 // Whether to always use the new app install bubble when installing an app.
104 const char kAppsNewInstallBubble[] = "apps-new-install-bubble"; 104 const char kAppsNewInstallBubble[] = "apps-new-install-bubble";
105 105
106 // Experimental native frame support for packaged apps.
107 const char kAppsUseNativeFrame[] = "apps-use-native-frame";
108
109 // Enables overriding the path for the default authentication extension. 106 // Enables overriding the path for the default authentication extension.
110 const char kAuthExtensionPath[] = "auth-ext-path"; 107 const char kAuthExtensionPath[] = "auth-ext-path";
111 108
112 // Whitelist of servers that Negotiate will generate delegated Kerberos tickets 109 // Whitelist of servers that Negotiate will generate delegated Kerberos tickets
113 // for. 110 // for.
114 const char kAuthNegotiateDelegateWhitelist[] = 111 const char kAuthNegotiateDelegateWhitelist[] =
115 "auth-negotiate-delegate-whitelist"; 112 "auth-negotiate-delegate-whitelist";
116 113
117 // HTTP authentication schemes to enable. This is a comma-separated list of 114 // HTTP authentication schemes to enable. This is a comma-separated list of
118 // authentication schemes (basic, digest, ntlm, and negotiate). By default all 115 // authentication schemes (basic, digest, ntlm, and negotiate). By default all
(...skipping 1340 matching lines...) Expand 10 before | Expand all | Expand 10 after
1459 1456
1460 // ----------------------------------------------------------------------------- 1457 // -----------------------------------------------------------------------------
1461 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1458 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1462 // 1459 //
1463 // You were going to just dump your switches here, weren't you? Instead, please 1460 // You were going to just dump your switches here, weren't you? Instead, please
1464 // put them in alphabetical order above, or in order inside the appropriate 1461 // put them in alphabetical order above, or in order inside the appropriate
1465 // ifdef at the bottom. The order should match the header. 1462 // ifdef at the bottom. The order should match the header.
1466 // ----------------------------------------------------------------------------- 1463 // -----------------------------------------------------------------------------
1467 1464
1468 } // namespace switches 1465 } // namespace switches
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698