Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2015 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_MULTILANGUAGE_OPTIONS_WEBUI_BROWSERTEST_ H_ | |
| 6 #define CHROME_BROWSER_UI_WEBUI_OPTIONS_MULTILANGUAGE_OPTIONS_WEBUI_BROWSERTEST_ H_ | |
| 7 | |
|
Dan Beam
2015/06/17 23:42:01
nit:
#include "base/macros.h"
for DISALLOW_COPY_
Julius
2015/06/24 21:17:58
Done.
| |
| 8 #include "chrome/test/base/web_ui_browser_test.h" | |
| 9 | |
| 10 // This is a helper class used by multilanguage_options_webui_browsertest.js | |
| 11 // to flip the enable-multilingual-spellchecker command line switch and set | |
| 12 // the AcceptLanguages and SpellcheckDictionaries preferences. | |
| 13 class MultilanguageOptionsWebUIBrowserTest : public WebUIBrowserTest { | |
| 14 public: | |
| 15 MultilanguageOptionsWebUIBrowserTest(); | |
| 16 ~MultilanguageOptionsWebUIBrowserTest() override; | |
| 17 | |
| 18 private: | |
| 19 void SetUpCommandLine(base::CommandLine* command_line) override; | |
| 20 void SetUpOnMainThread() override; | |
|
Dan Beam
2015/06/17 23:42:01
nit: \n
Julius
2015/06/24 21:17:58
Done.
| |
| 21 DISALLOW_COPY_AND_ASSIGN(MultilanguageOptionsWebUIBrowserTest); | |
| 22 }; | |
| 23 | |
| 24 #endif // CHROME_BROWSER_UI_WEBUI_OPTIONS_MULTILANGUAGE_OPTIONS_WEBUI_BROWSERTE ST_H_ | |
| OLD | NEW |