| 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 #include "build/build_config.h" | 9 #include "build/build_config.h" |
| 10 | 10 |
| (...skipping 615 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 626 | 626 |
| 627 // Comma-separated list of directories with component extensions to load. | 627 // Comma-separated list of directories with component extensions to load. |
| 628 const char kLoadComponentExtension[] = "load-component-extension"; | 628 const char kLoadComponentExtension[] = "load-component-extension"; |
| 629 | 629 |
| 630 // Loads an extension from the specified directory. | 630 // Loads an extension from the specified directory. |
| 631 const char kLoadExtension[] = "load-extension"; | 631 const char kLoadExtension[] = "load-extension"; |
| 632 | 632 |
| 633 // Makes Chrome default browser | 633 // Makes Chrome default browser |
| 634 const char kMakeDefaultBrowser[] = "make-default-browser"; | 634 const char kMakeDefaultBrowser[] = "make-default-browser"; |
| 635 | 635 |
| 636 // Changes security chip behavior. | 636 extern const char kSecurityChip[] = "security-chip"; |
| 637 const char kMaterialSecurityVerbose[] = "material-security-verbose"; | 637 extern const char kSecurityChipShowNonSecureOnly[] = "show-nonsecure-only"; |
| 638 const char kMaterialSecurityVerboseShowAllAnimated[] = "show-all-animated"; | 638 extern const char kSecurityChipShowAll[] = "show-all"; |
| 639 const char kMaterialSecurityVerboseShowAllNonAnimated[] = | 639 |
| 640 "show-all-nonanimated"; | 640 extern const char kSecurityChipAnimation[] = "security-chip-animation"; |
| 641 const char kMaterialSecurityVerboseShowNonSecureAnimated[] = | 641 extern const char kSecurityChipAnimationNone[] = "none"; |
| 642 "show-nonsecure-animated"; | 642 extern const char kSecurityChipAnimationNonSecureOnly[] = |
| 643 const char kMaterialSecurityVerboseShowNonSecureNonAnimated[] = | 643 "animate-nonsecure-only"; |
| 644 "show-nonsecure-nonanimated"; | 644 extern const char kSecurityChipAnimationAll[] = "animate-all"; |
| 645 | 645 |
| 646 // Forces the maximum disk space to be used by the media cache, in bytes. | 646 // Forces the maximum disk space to be used by the media cache, in bytes. |
| 647 const char kMediaCacheSize[] = "media-cache-size"; | 647 const char kMediaCacheSize[] = "media-cache-size"; |
| 648 | 648 |
| 649 // Enables Media Router. | 649 // Enables Media Router. |
| 650 const char kMediaRouter[] = "media-router"; | 650 const char kMediaRouter[] = "media-router"; |
| 651 | 651 |
| 652 // Enables the recording of metrics reports but disables reporting. In contrast | 652 // Enables the recording of metrics reports but disables reporting. In contrast |
| 653 // to kDisableMetrics, this executes all the code that a normal client would | 653 // to kDisableMetrics, this executes all the code that a normal client would |
| 654 // use for reporting, except the report is dropped rather than sent to the | 654 // use for reporting, except the report is dropped rather than sent to the |
| (...skipping 678 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1333 | 1333 |
| 1334 // ----------------------------------------------------------------------------- | 1334 // ----------------------------------------------------------------------------- |
| 1335 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. | 1335 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. |
| 1336 // | 1336 // |
| 1337 // You were going to just dump your switches here, weren't you? Instead, please | 1337 // You were going to just dump your switches here, weren't you? Instead, please |
| 1338 // put them in alphabetical order above, or in order inside the appropriate | 1338 // put them in alphabetical order above, or in order inside the appropriate |
| 1339 // ifdef at the bottom. The order should match the header. | 1339 // ifdef at the bottom. The order should match the header. |
| 1340 // ----------------------------------------------------------------------------- | 1340 // ----------------------------------------------------------------------------- |
| 1341 | 1341 |
| 1342 } // namespace switches | 1342 } // namespace switches |
| OLD | NEW |