summaryrefslogtreecommitdiffstats
path: root/chrome/browser/ui/webui/options/multilanguage_options_browsertest.cc
blob: e1a589e376fc30c612e92d121f407cd8b5baf539 (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// 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.

#include "chrome/browser/ui/webui/options/multilanguage_options_browsertest.h"

#include <string>

#include "base/command_line.h"
#include "base/prefs/pref_service.h"
#include "build/build_config.h"
#include "chrome/browser/ui/browser_window.h"
#include "chrome/common/chrome_switches.h"
#include "chrome/common/pref_names.h"

MultilanguageOptionsBrowserTest::MultilanguageOptionsBrowserTest() {
}

MultilanguageOptionsBrowserTest::~MultilanguageOptionsBrowserTest() {
}

void MultilanguageOptionsBrowserTest::ClearSpellcheckDictionaries() {
  SetDictionariesPref(base::ListValue());
}

void MultilanguageOptionsBrowserTest::SetUpOnMainThread() {
  WebUIBrowserTest::SetUpOnMainThread();
#if defined(OS_CHROMEOS)
  std::string setting_name = prefs::kLanguagePreferredLanguages;
#else
  std::string setting_name = prefs::kAcceptLanguages;
#endif

  browser()->profile()->GetPrefs()->SetString(setting_name, "fr,es,de,en");
  base::ListValue dictionaries;
  dictionaries.AppendString("fr");
  SetDictionariesPref(dictionaries);
  browser()->profile()->GetPrefs()->SetString(prefs::kSpellCheckDictionary,
                                              std::string());
}

void MultilanguageOptionsBrowserTest::SetDictionariesPref(
    const base::ListValue& value) {
  browser()->profile()->GetPrefs()->Set(prefs::kSpellCheckDictionaries, value);
}