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

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

Issue 24052004: Disable policy push feature by default in Android. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 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
« 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 529 matching lines...) Expand 10 before | Expand all | Expand 10 after
540 // GAIA login page, an info bar can help the user login. 540 // GAIA login page, an info bar can help the user login.
541 const char kEnableAutologin[] = "enable-autologin"; 541 const char kEnableAutologin[] = "enable-autologin";
542 542
543 // Enables running all beforeunload handlers before closing any browser windows 543 // Enables running all beforeunload handlers before closing any browser windows
544 // on shutdown. 544 // on shutdown.
545 const char kEnableBatchedShutdown[] = "enable-batched-shutdown"; 545 const char kEnableBatchedShutdown[] = "enable-batched-shutdown";
546 546
547 // Enables the benchmarking extensions. 547 // Enables the benchmarking extensions.
548 const char kEnableBenchmarking[] = "enable-benchmarking"; 548 const char kEnableBenchmarking[] = "enable-benchmarking";
549 549
550 // Enables pushing cloud policy to Chrome on Android.
551 const char kEnableCloudPolicyPushAndroid[] =
Mattias Nissler (ping if slow) 2013/09/16 09:43:43 I'd rather remove the Android suffix, the flag mig
552 "enable-cloud-policy-push-android";
553
550 // This applies only when the process type is "service". Enables the Cloud 554 // This applies only when the process type is "service". Enables the Cloud
551 // Print Proxy component within the service process. 555 // Print Proxy component within the service process.
552 const char kEnableCloudPrintProxy[] = "enable-cloud-print-proxy"; 556 const char kEnableCloudPrintProxy[] = "enable-cloud-print-proxy";
553 557
554 // Enables fetching and storing cloud policy for components. This currently 558 // Enables fetching and storing cloud policy for components. This currently
555 // supports policy for extensions on Chrome OS. 559 // supports policy for extensions on Chrome OS.
556 const char kEnableComponentCloudPolicy[] = "enable-component-cloud-policy"; 560 const char kEnableComponentCloudPolicy[] = "enable-component-cloud-policy";
557 561
558 // Enables fetching the user's contacts from Google and showing them in the 562 // Enables fetching the user's contacts from Google and showing them in the
559 // Chrome OS apps list. 563 // Chrome OS apps list.
(...skipping 1061 matching lines...) Expand 10 before | Expand all | Expand 10 after
1621 1625
1622 // ----------------------------------------------------------------------------- 1626 // -----------------------------------------------------------------------------
1623 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1627 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1624 // 1628 //
1625 // You were going to just dump your switches here, weren't you? Instead, please 1629 // You were going to just dump your switches here, weren't you? Instead, please
1626 // put them in alphabetical order above, or in order inside the appropriate 1630 // put them in alphabetical order above, or in order inside the appropriate
1627 // ifdef at the bottom. The order should match the header. 1631 // ifdef at the bottom. The order should match the header.
1628 // ----------------------------------------------------------------------------- 1632 // -----------------------------------------------------------------------------
1629 1633
1630 } // namespace switches 1634 } // 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