| OLD | NEW |
| 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 649 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 660 // kSyncServiceURL, etc) | 660 // kSyncServiceURL, etc) |
| 661 const char kIgnoreUrlFetcherCertRequests[] = | 661 const char kIgnoreUrlFetcherCertRequests[] = |
| 662 "ignore-urlfetcher-cert-requests"; | 662 "ignore-urlfetcher-cert-requests"; |
| 663 | 663 |
| 664 // Causes the browser to launch directly in incognito mode. | 664 // Causes the browser to launch directly in incognito mode. |
| 665 const char kIncognito[] = "incognito"; | 665 const char kIncognito[] = "incognito"; |
| 666 | 666 |
| 667 // Causes Chrome to initiate an installation flow for the given app. | 667 // Causes Chrome to initiate an installation flow for the given app. |
| 668 const char kInstallChromeApp[] = "install-chrome-app"; | 668 const char kInstallChromeApp[] = "install-chrome-app"; |
| 669 | 669 |
| 670 // Causes Chrome to attempt to get metadata from the webstore for the | |
| 671 // app/extension ID given, and then prompt the user to download and install it. | |
| 672 // This is allowed *only* for ephemeral apps. All other ids will be ignored. | |
| 673 const char kInstallEphemeralAppFromWebstore[] = | |
| 674 "install-ephemeral-app-from-webstore"; | |
| 675 | |
| 676 // A list of whitelists to install for a supervised user, for testing. | 670 // A list of whitelists to install for a supervised user, for testing. |
| 677 // The list is of the following form: <id>[:<name>],[<id>[:<name>],...] | 671 // The list is of the following form: <id>[:<name>],[<id>[:<name>],...] |
| 678 const char kInstallSupervisedUserWhitelists[] = | 672 const char kInstallSupervisedUserWhitelists[] = |
| 679 "install-supervised-user-whitelists"; | 673 "install-supervised-user-whitelists"; |
| 680 | 674 |
| 681 // Marks a renderer as an Instant process. | 675 // Marks a renderer as an Instant process. |
| 682 const char kInstantProcess[] = "instant-process"; | 676 const char kInstantProcess[] = "instant-process"; |
| 683 | 677 |
| 684 // Invalidation service should use GCM network channel even if experiment is not | 678 // Invalidation service should use GCM network channel even if experiment is not |
| 685 // enabled. | 679 // enabled. |
| (...skipping 732 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1418 | 1412 |
| 1419 // ----------------------------------------------------------------------------- | 1413 // ----------------------------------------------------------------------------- |
| 1420 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1414 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1421 // | 1415 // |
| 1422 // You were going to just dump your switches here, weren't you? Instead, please | 1416 // You were going to just dump your switches here, weren't you? Instead, please |
| 1423 // put them in alphabetical order above, or in order inside the appropriate | 1417 // put them in alphabetical order above, or in order inside the appropriate |
| 1424 // ifdef at the bottom. The order should match the header. | 1418 // ifdef at the bottom. The order should match the header. |
| 1425 // ----------------------------------------------------------------------------- | 1419 // ----------------------------------------------------------------------------- |
| 1426 | 1420 |
| 1427 } // namespace switches | 1421 } // namespace switches |
| OLD | NEW |