| 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 616 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 // Changes security chip behavior. |
| 637 const char kMaterialSecurityVerbose[] = "material-security-verbose"; | 637 const char kSecurityVerboseDecoration[] = "security-verbose-decoration"; |
| 638 const char kMaterialSecurityVerboseShowAllAnimated[] = "show-all-animated"; | 638 const char kSecurityVerboseDecorationShowAllAnimated[] = "show-all-animated"; |
| 639 const char kMaterialSecurityVerboseShowAllNonAnimated[] = | 639 const char kSecurityVerboseDecorationShowAllNonAnimated[] = |
| 640 "show-all-nonanimated"; | 640 "show-all-nonanimated"; |
| 641 const char kMaterialSecurityVerboseShowNonSecureAnimated[] = | 641 const char kSecurityVerboseDecorationShowAllWithOnlyNonSecureAnimated[] = |
| 642 "show-all-with-only-nonsecure-animated"; |
| 643 const char kSecurityVerboseDecorationShowNonSecureAnimated[] = |
| 642 "show-nonsecure-animated"; | 644 "show-nonsecure-animated"; |
| 643 const char kMaterialSecurityVerboseShowNonSecureNonAnimated[] = | 645 const char kSecurityVerboseDecorationShowNonSecureNonAnimated[] = |
| 644 "show-nonsecure-nonanimated"; | 646 "show-nonsecure-nonanimated"; |
| 645 | 647 |
| 646 // Forces the maximum disk space to be used by the media cache, in bytes. | 648 // Forces the maximum disk space to be used by the media cache, in bytes. |
| 647 const char kMediaCacheSize[] = "media-cache-size"; | 649 const char kMediaCacheSize[] = "media-cache-size"; |
| 648 | 650 |
| 649 // Enables Media Router. | 651 // Enables Media Router. |
| 650 const char kMediaRouter[] = "media-router"; | 652 const char kMediaRouter[] = "media-router"; |
| 651 | 653 |
| 652 // Enables the recording of metrics reports but disables reporting. In contrast | 654 // Enables the recording of metrics reports but disables reporting. In contrast |
| 653 // to kDisableMetrics, this executes all the code that a normal client would | 655 // to kDisableMetrics, this executes all the code that a normal client would |
| (...skipping 679 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1333 | 1335 |
| 1334 // ----------------------------------------------------------------------------- | 1336 // ----------------------------------------------------------------------------- |
| 1335 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. | 1337 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. |
| 1336 // | 1338 // |
| 1337 // You were going to just dump your switches here, weren't you? Instead, please | 1339 // 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 | 1340 // put them in alphabetical order above, or in order inside the appropriate |
| 1339 // ifdef at the bottom. The order should match the header. | 1341 // ifdef at the bottom. The order should match the header. |
| 1340 // ----------------------------------------------------------------------------- | 1342 // ----------------------------------------------------------------------------- |
| 1341 | 1343 |
| 1342 } // namespace switches | 1344 } // namespace switches |
| OLD | NEW |