| Index: chrome/common/chrome_switches.h
|
| diff --git a/chrome/common/chrome_switches.h b/chrome/common/chrome_switches.h
|
| index 8ce9d08c43149abf7a79894bf635d939ddaab6db..16694a8140bec1c8ebabb876b02320d98c8885e8 100644
|
| --- a/chrome/common/chrome_switches.h
|
| +++ b/chrome/common/chrome_switches.h
|
| @@ -14,6 +14,10 @@
|
| // installer where dependencies should be limited. Instead, have files
|
| // directly include your switch file.
|
|
|
| +namespace base {
|
| +class CommandLine;
|
| +};
|
| +
|
| namespace switches {
|
|
|
| // -----------------------------------------------------------------------------
|
| @@ -74,6 +78,7 @@ extern const char kDisableDefaultApps[];
|
| extern const char kDisableDeviceDiscoveryNotifications[];
|
| extern const char kDisableDomainReliability[];
|
| extern const char kDisableExtensions[];
|
| +extern const char kDisableExtensionsExcept[];
|
| extern const char kDisableExtensionsFileAccessCheck[];
|
| extern const char kDisableExtensionsHttpThrottling[];
|
| extern const char kDisableFieldTrialTestingConfig[];
|
| @@ -385,6 +390,7 @@ extern const char kEnableInputImeAPI[];
|
| #endif
|
|
|
| bool AboutInSettingsEnabled();
|
| +bool ExtensionsDisabled(const base::CommandLine& command_line);
|
| bool MdFeedbackEnabled();
|
| bool MdPolicyPageEnabled();
|
| bool PdfMaterialUIEnabled();
|
|
|