blob: 2ea4c66e0dc8f83370b4d175edf71cbf9b9ab226 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_UI_WEBUI_OPTIONS_MULTILANGUAGE_OPTIONS_BROWSERTEST_H_
#define CHROME_BROWSER_UI_WEBUI_OPTIONS_MULTILANGUAGE_OPTIONS_BROWSERTEST_H_
#include "base/macros.h"
#include "chrome/test/base/web_ui_browser_test.h"
// This is a helper class used by multilanguage_options_webui_browsertest.js
// to flip the enable-multilingual-spellchecker command line switch and set
// the AcceptLanguages and SpellcheckDictionaries preferences.
class MultilanguageOptionsBrowserTest : public WebUIBrowserTest {
public:
MultilanguageOptionsBrowserTest();
~MultilanguageOptionsBrowserTest() override;
// Set the kSpellCheckDictionaries preference to an empty list value.
void ClearSpellcheckDictionaries();
private:
// WebUIBrowserTest implementation.
void SetUpOnMainThread() override;
void SetDictionariesPref(const base::ListValue& value);
DISALLOW_COPY_AND_ASSIGN(MultilanguageOptionsBrowserTest);
};
#endif // CHROME_BROWSER_UI_WEBUI_OPTIONS_MULTILANGUAGE_OPTIONS_BROWSERTEST_H_
|