| Index: chrome/common/chrome_switches.cc
|
| diff --git a/chrome/common/chrome_switches.cc b/chrome/common/chrome_switches.cc
|
| index a0f551e6a93a28802c00f5a4493dcf6f373c46e7..843bbac68cb1f5239d0fa51b67a7794dc1400bdd 100644
|
| --- a/chrome/common/chrome_switches.cc
|
| +++ b/chrome/common/chrome_switches.cc
|
| @@ -443,6 +443,9 @@ const char kEnableMaterialDesignDownloads[] = "enable-md-downloads";
|
| // Enables the Material Design version of chrome://extensions.
|
| const char kEnableMaterialDesignExtensions[] = "enable-md-extensions";
|
|
|
| +// Enables the Material Design policy page at chrome://md-policy.
|
| +const char kEnableMaterialDesignPolicyPage[] = "enable-md-policy-page";
|
| +
|
| // Enables Media Router.
|
| const char kEnableMediaRouter[] = "enable-media-router";
|
|
|
| @@ -1348,6 +1351,11 @@ bool MdExtensionsEnabled() {
|
| ::switches::kEnableMaterialDesignExtensions);
|
| }
|
|
|
| +bool MdPolicyPageEnabled() {
|
| + return base::CommandLine::ForCurrentProcess()->HasSwitch(
|
| + ::switches::kEnableMaterialDesignPolicyPage);
|
| +}
|
| +
|
| bool MediaRouterEnabled() {
|
| #if defined(ENABLE_MEDIA_ROUTER)
|
| return base::CommandLine::ForCurrentProcess()->HasSwitch(
|
|
|