OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef CHROME_BROWSER_UI_WEBUI_OPTIONS_MANAGED_USER_SETTINGS_TEST_H_ |
| 6 #define CHROME_BROWSER_UI_WEBUI_OPTIONS_MANAGED_USER_SETTINGS_TEST_H_ |
| 7 |
| 8 #include "chrome/test/base/web_ui_browsertest.h" |
| 9 |
| 10 class CommandLine; |
| 11 |
| 12 class ManagedUserSettingsTest : public WebUIBrowserTest { |
| 13 public: |
| 14 ManagedUserSettingsTest(); |
| 15 virtual ~ManagedUserSettingsTest(); |
| 16 |
| 17 protected: |
| 18 virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE; |
| 19 |
| 20 private: |
| 21 DISALLOW_COPY_AND_ASSIGN(ManagedUserSettingsTest); |
| 22 }; |
| 23 |
| 24 #endif // CHROME_BROWSER_UI_WEBUI_OPTIONS_MANAGED_USER_SETTINGS_TEST_H_ |
OLD | NEW |