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

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

Issue 11970002: Added Client-Hints. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Made float literals explicit in tests Created 7 years, 9 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 | « 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 443 matching lines...) Expand 10 before | Expand all | Expand 10 after
454 const char kEnableAuthNegotiatePort[] = "enable-auth-negotiate-port"; 454 const char kEnableAuthNegotiatePort[] = "enable-auth-negotiate-port";
455 455
456 // Enables the pre- and auto-login features. When a user signs in to sync, the 456 // Enables the pre- and auto-login features. When a user signs in to sync, the
457 // browser's cookie jar is pre-filled with GAIA cookies. When the user visits a 457 // browser's cookie jar is pre-filled with GAIA cookies. When the user visits a
458 // GAIA login page, an info bar can help the user login. 458 // GAIA login page, an info bar can help the user login.
459 const char kEnableAutologin[] = "enable-autologin"; 459 const char kEnableAutologin[] = "enable-autologin";
460 460
461 // Enables the benchmarking extensions. 461 // Enables the benchmarking extensions.
462 const char kEnableBenchmarking[] = "enable-benchmarking"; 462 const char kEnableBenchmarking[] = "enable-benchmarking";
463 463
464 // Enables client hints, which adds hints about browser state to HTTP requests.
465 const char kEnableClientHints[] = "enable-client-hints";
466
464 // This applies only when the process type is "service". Enables the Cloud 467 // This applies only when the process type is "service". Enables the Cloud
465 // Print Proxy component within the service process. 468 // Print Proxy component within the service process.
466 const char kEnableCloudPrintProxy[] = "enable-cloud-print-proxy"; 469 const char kEnableCloudPrintProxy[] = "enable-cloud-print-proxy";
467 470
468 // Enables fetching the user's contacts from Google and showing them in the 471 // Enables fetching the user's contacts from Google and showing them in the
469 // Chrome OS apps list. 472 // Chrome OS apps list.
470 const char kEnableContacts[] = "enable-contacts"; 473 const char kEnableContacts[] = "enable-contacts";
471 474
472 // Enables web developers to create apps for Chrome without using crx packages. 475 // Enables web developers to create apps for Chrome without using crx packages.
473 const char kEnableCrxlessWebApps[] = "enable-crxless-web-apps"; 476 const char kEnableCrxlessWebApps[] = "enable-crxless-web-apps";
(...skipping 1195 matching lines...) Expand 10 before | Expand all | Expand 10 after
1669 1672
1670 // ----------------------------------------------------------------------------- 1673 // -----------------------------------------------------------------------------
1671 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1674 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1672 // 1675 //
1673 // You were going to just dump your switches here, weren't you? Instead, please 1676 // You were going to just dump your switches here, weren't you? Instead, please
1674 // put them in alphabetical order above, or in order inside the appropriate 1677 // put them in alphabetical order above, or in order inside the appropriate
1675 // ifdef at the bottom. The order should match the header. 1678 // ifdef at the bottom. The order should match the header.
1676 // ----------------------------------------------------------------------------- 1679 // -----------------------------------------------------------------------------
1677 1680
1678 } // namespace switches 1681 } // 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