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

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

Issue 2378623007: [Material] Update Material Security Verbose Decoration Flag (Closed)
Patch Set: removed extra line and fixed histogram.xml Created 4 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 #include "build/build_config.h" 9 #include "build/build_config.h"
10 10
(...skipping 603 matching lines...) Expand 10 before | Expand all | Expand 10 after
614 614
615 // Comma-separated list of directories with component extensions to load. 615 // Comma-separated list of directories with component extensions to load.
616 const char kLoadComponentExtension[] = "load-component-extension"; 616 const char kLoadComponentExtension[] = "load-component-extension";
617 617
618 // Loads an extension from the specified directory. 618 // Loads an extension from the specified directory.
619 const char kLoadExtension[] = "load-extension"; 619 const char kLoadExtension[] = "load-extension";
620 620
621 // Makes Chrome default browser 621 // Makes Chrome default browser
622 const char kMakeDefaultBrowser[] = "make-default-browser"; 622 const char kMakeDefaultBrowser[] = "make-default-browser";
623 623
624 // Changes security chip behavior. 624 extern const char kSecurityChip[] = "security-chip";
625 const char kMaterialSecurityVerbose[] = "material-security-verbose"; 625 extern const char kSecurityChipShowNonSecureOnly[] = "show-nonsecure-only";
626 const char kMaterialSecurityVerboseShowAllAnimated[] = "show-all-animated"; 626 extern const char kSecurityChipShowAll[] = "show-all";
627 const char kMaterialSecurityVerboseShowAllNonAnimated[] = 627
628 "show-all-nonanimated"; 628 extern const char kSecurityChipAnimation[] = "security-chip-animation";
629 const char kMaterialSecurityVerboseShowNonSecureAnimated[] = 629 extern const char kSecurityChipAnimationNone[] = "none";
630 "show-nonsecure-animated"; 630 extern const char kSecurityChipAnimationNonSecureOnly[] =
631 const char kMaterialSecurityVerboseShowNonSecureNonAnimated[] = 631 "animate-nonsecure-only";
632 "show-nonsecure-nonanimated"; 632 extern const char kSecurityChipAnimationAll[] = "animate-all";
633 633
634 // Forces the maximum disk space to be used by the media cache, in bytes. 634 // Forces the maximum disk space to be used by the media cache, in bytes.
635 const char kMediaCacheSize[] = "media-cache-size"; 635 const char kMediaCacheSize[] = "media-cache-size";
636 636
637 // Enables Media Router. 637 // Enables Media Router.
638 const char kMediaRouter[] = "media-router"; 638 const char kMediaRouter[] = "media-router";
639 639
640 // Enables the recording of metrics reports but disables reporting. In contrast 640 // Enables the recording of metrics reports but disables reporting. In contrast
641 // to kDisableMetrics, this executes all the code that a normal client would 641 // to kDisableMetrics, this executes all the code that a normal client would
642 // use for reporting, except the report is dropped rather than sent to the 642 // use for reporting, except the report is dropped rather than sent to the
(...skipping 681 matching lines...) Expand 10 before | Expand all | Expand 10 after
1324 1324
1325 // ----------------------------------------------------------------------------- 1325 // -----------------------------------------------------------------------------
1326 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. 1326 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE.
1327 // 1327 //
1328 // You were going to just dump your switches here, weren't you? Instead, please 1328 // You were going to just dump your switches here, weren't you? Instead, please
1329 // put them in alphabetical order above, or in order inside the appropriate 1329 // put them in alphabetical order above, or in order inside the appropriate
1330 // ifdef at the bottom. The order should match the header. 1330 // ifdef at the bottom. The order should match the header.
1331 // ----------------------------------------------------------------------------- 1331 // -----------------------------------------------------------------------------
1332 1332
1333 } // namespace switches 1333 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698