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

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

Issue 24451003: Client Hints (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed nit and use ScopedLocale with posix only Created 7 years, 2 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
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 546 matching lines...) Expand 10 before | Expand all | Expand 10 after
557 // GAIA login page, an info bar can help the user login. 557 // GAIA login page, an info bar can help the user login.
558 const char kEnableAutologin[] = "enable-autologin"; 558 const char kEnableAutologin[] = "enable-autologin";
559 559
560 // Enables running all beforeunload handlers before closing any browser windows 560 // Enables running all beforeunload handlers before closing any browser windows
561 // on shutdown. 561 // on shutdown.
562 const char kEnableBatchedShutdown[] = "enable-batched-shutdown"; 562 const char kEnableBatchedShutdown[] = "enable-batched-shutdown";
563 563
564 // Enables the benchmarking extensions. 564 // Enables the benchmarking extensions.
565 const char kEnableBenchmarking[] = "enable-benchmarking"; 565 const char kEnableBenchmarking[] = "enable-benchmarking";
566 566
567 // Enables client hints, which adds hints about browser state to HTTP requests.
568 const char kEnableClientHints[] = "enable-client-hints";
569
567 // Enables pushing cloud policy to Chrome using an invalidation service. 570 // Enables pushing cloud policy to Chrome using an invalidation service.
568 const char kEnableCloudPolicyPush[] = "enable-cloud-policy-push"; 571 const char kEnableCloudPolicyPush[] = "enable-cloud-policy-push";
569 572
570 // This applies only when the process type is "service". Enables the Cloud 573 // This applies only when the process type is "service". Enables the Cloud
571 // Print Proxy component within the service process. 574 // Print Proxy component within the service process.
572 const char kEnableCloudPrintProxy[] = "enable-cloud-print-proxy"; 575 const char kEnableCloudPrintProxy[] = "enable-cloud-print-proxy";
573 576
574 // Enables fetching and storing cloud policy for components. This currently 577 // Enables fetching and storing cloud policy for components. This currently
575 // supports policy for extensions on Chrome OS. 578 // supports policy for extensions on Chrome OS.
576 const char kEnableComponentCloudPolicy[] = "enable-component-cloud-policy"; 579 const char kEnableComponentCloudPolicy[] = "enable-component-cloud-policy";
(...skipping 1080 matching lines...) Expand 10 before | Expand all | Expand 10 after
1657 1660
1658 // ----------------------------------------------------------------------------- 1661 // -----------------------------------------------------------------------------
1659 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1662 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1660 // 1663 //
1661 // You were going to just dump your switches here, weren't you? Instead, please 1664 // You were going to just dump your switches here, weren't you? Instead, please
1662 // put them in alphabetical order above, or in order inside the appropriate 1665 // put them in alphabetical order above, or in order inside the appropriate
1663 // ifdef at the bottom. The order should match the header. 1666 // ifdef at the bottom. The order should match the header.
1664 // ----------------------------------------------------------------------------- 1667 // -----------------------------------------------------------------------------
1665 1668
1666 } // namespace switches 1669 } // namespace switches
OLDNEW
« chrome/browser/net/client_hints.cc ('K') | « chrome/common/chrome_switches.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698