Chromium Code Reviews| Index: chrome/test/data/webui/policy_ui_material.cc |
| diff --git a/chrome/test/data/webui/policy_ui_material.cc b/chrome/test/data/webui/policy_ui_material.cc |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..80871e3da88970c3d83a0c77119c36c0c334b585 |
| --- /dev/null |
| +++ b/chrome/test/data/webui/policy_ui_material.cc |
| @@ -0,0 +1,19 @@ |
| +// Copyright (c) 2015 The Chromium Authors. All rights reserved. |
|
Dan Beam
2015/10/10 01:04:18
remove (c)
fhorschig
2015/10/13 16:29:11
Done.
|
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#include "chrome/test/data/webui/policy_ui_material.h" |
| + |
| +#include "base/command_line.h" |
| +#include "chrome/common/chrome_switches.h" |
| + |
| +PolicyUiMaterialWebUITest::PolicyUiMaterialWebUITest() {} |
| + |
| +PolicyUiMaterialWebUITest::~PolicyUiMaterialWebUITest() {} |
| + |
|
Dan Beam
2015/10/10 01:04:18
1 less \n
fhorschig
2015/10/13 16:29:11
Done.
|
| + |
| +void PolicyUiMaterialWebUITest::SetUpCommandLine( |
| + base::CommandLine* command_line) { |
| + InProcessBrowserTest::SetUpCommandLine(command_line); |
|
Dan Beam
2015/10/10 01:04:18
WebUIBrowserTest::SetUpCommandLine(command_line);
fhorschig
2015/10/13 16:29:11
Done.
|
| + command_line->AppendSwitch(switches::kEnableMaterialDesignPolicyPage); |
| +} |