| Index: chrome/common/chrome_switches.cc
|
| diff --git a/chrome/common/chrome_switches.cc b/chrome/common/chrome_switches.cc
|
| index 61fdcde83e8ad1fb92389654ef7fdc84a694fa7c..8967c60b4f17bcf2b914bad7277ef4a5d8054a70 100644
|
| --- a/chrome/common/chrome_switches.cc
|
| +++ b/chrome/common/chrome_switches.cc
|
| @@ -633,15 +633,15 @@ const char kLoadExtension[] = "load-extension";
|
| // Makes Chrome default browser
|
| const char kMakeDefaultBrowser[] = "make-default-browser";
|
|
|
| -// Changes security chip behavior.
|
| -const char kMaterialSecurityVerbose[] = "material-security-verbose";
|
| -const char kMaterialSecurityVerboseShowAllAnimated[] = "show-all-animated";
|
| -const char kMaterialSecurityVerboseShowAllNonAnimated[] =
|
| - "show-all-nonanimated";
|
| -const char kMaterialSecurityVerboseShowNonSecureAnimated[] =
|
| - "show-nonsecure-animated";
|
| -const char kMaterialSecurityVerboseShowNonSecureNonAnimated[] =
|
| - "show-nonsecure-nonanimated";
|
| +extern const char kSecurityChip[] = "security-chip";
|
| +extern const char kSecurityChipShowNonSecureOnly[] = "show-nonsecure-only";
|
| +extern const char kSecurityChipShowAll[] = "show-all";
|
| +
|
| +extern const char kSecurityChipAnimation[] = "security-chip-animation";
|
| +extern const char kSecurityChipAnimationNone[] = "none";
|
| +extern const char kSecurityChipAnimationNonSecureOnly[] =
|
| + "animate-nonsecure-only";
|
| +extern const char kSecurityChipAnimationAll[] = "animate-all";
|
|
|
| // Forces the maximum disk space to be used by the media cache, in bytes.
|
| const char kMediaCacheSize[] = "media-cache-size";
|
|
|