Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 #include "chrome/test/data/webui/policy_ui_material.h" | |
| 2 | |
| 3 #include "base/command_line.h" | |
| 4 #include "chrome/common/chrome_switches.h" | |
| 5 | |
| 6 PolicyUiMaterialWebUITest::PolicyUiMaterialWebUITest() {} | |
| 7 | |
| 8 PolicyUiMaterialWebUITest::~PolicyUiMaterialWebUITest() {} | |
| 9 | |
| 10 void PolicyUiMaterialWebUITest::SetUpCommandLine( | |
| 11 base::CommandLine* command_line) { | |
| 12 WebUIBrowserTest::SetUpCommandLine(command_line); | |
| 13 command_line->AppendSwitch(switches::kEnableMaterialDesignPolicyPage); | |
|
Dan Beam
2015/11/03 18:22:31
why not just use commandLineSwitches in PolymerTes
fhorschig
2015/11/22 17:55:27
I tried doing that (like it was done here: [1]) an
| |
| 14 } | |
| OLD | NEW |