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

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

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

Powered by Google App Engine
This is Rietveld 408576698