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

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

Issue 7740083: Put pre- and auto-login behind flags. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 3 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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 388 matching lines...) Expand 10 before | Expand all | Expand 10 after
399 // in response to a Negotiate challenge. See HttpAuthHandlerNegotiate::CreateSPN 399 // in response to a Negotiate challenge. See HttpAuthHandlerNegotiate::CreateSPN
400 // for more background. 400 // for more background.
401 const char kEnableAuthNegotiatePort[] = "enable-auth-negotiate-port"; 401 const char kEnableAuthNegotiatePort[] = "enable-auth-negotiate-port";
402 402
403 // With this flag set, Chrome will occasionally prompt the user to volunteer 403 // With this flag set, Chrome will occasionally prompt the user to volunteer
404 // Autofill usage data beyond what is collected by default. This is data that 404 // Autofill usage data beyond what is collected by default. This is data that
405 // we expect to be helpful for debugging, but that we do not want to send up 405 // we expect to be helpful for debugging, but that we do not want to send up
406 // automatically due to privacy concerns. 406 // automatically due to privacy concerns.
407 const char kEnableAutofillFeedback[] = "enable-autofill-feedback"; 407 const char kEnableAutofillFeedback[] = "enable-autofill-feedback";
408 408
409 // Enables the pre- and auto-login features. When a user signs in to sync,
410 // the browser's cookie jar is pre-filled with GAIA cookies. When the user
411 // visits a GAIA login page, an info bar can help the user login.
412 const char kEnableAutologin[] = "enable-autologin";
413
409 // This flag enables UI for clearing server data. Temporarily in place 414 // This flag enables UI for clearing server data. Temporarily in place
410 // until there's a server endpoint deployed. 415 // until there's a server endpoint deployed.
411 const char kEnableClearServerData[] = "enable-clear-server-data"; 416 const char kEnableClearServerData[] = "enable-clear-server-data";
412 417
413 // Enable click-to-play for blocked plug-ins. 418 // Enable click-to-play for blocked plug-ins.
414 const char kEnableClickToPlay[] = "enable-click-to-play"; 419 const char kEnableClickToPlay[] = "enable-click-to-play";
415 420
416 // This applies only when the process type is "service". Enables the 421 // This applies only when the process type is "service". Enables the
417 // Cloud Print Proxy component within the service process. 422 // Cloud Print Proxy component within the service process.
418 const char kEnableCloudPrintProxy[] = "enable-cloud-print-proxy"; 423 const char kEnableCloudPrintProxy[] = "enable-cloud-print-proxy";
(...skipping 825 matching lines...) Expand 10 before | Expand all | Expand 10 after
1244 1249
1245 // ----------------------------------------------------------------------------- 1250 // -----------------------------------------------------------------------------
1246 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1251 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1247 // 1252 //
1248 // You were going to just dump your switches here, weren't you? Instead, 1253 // You were going to just dump your switches here, weren't you? Instead,
1249 // please put them in alphabetical order above, or in order inside the 1254 // please put them in alphabetical order above, or in order inside the
1250 // appropriate ifdef at the bottom. The order should match the header. 1255 // appropriate ifdef at the bottom. The order should match the header.
1251 // ----------------------------------------------------------------------------- 1256 // -----------------------------------------------------------------------------
1252 1257
1253 } // namespace switches 1258 } // 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