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 #include "chrome/browser/ui/webui/options/multilanguage_options_webui_browsertes t.h" | |
| 6 | |
| 7 #include <string> | |
| 8 | |
| 9 #include "base/command_line.h" | |
| 10 #include "base/prefs/pref_service.h" | |
| 11 #include "chrome/browser/ui/browser_window.h" | |
| 12 #include "chrome/common/chrome_switches.h" | |
| 13 #include "chrome/common/pref_names.h" | |
| 14 | |
| 15 MultilanguageOptionsWebUIBrowserTest::MultilanguageOptionsWebUIBrowserTest() { | |
| 16 } | |
| 17 | |
| 18 MultilanguageOptionsWebUIBrowserTest::~MultilanguageOptionsWebUIBrowserTest() { | |
| 19 } | |
| 20 | |
| 21 void MultilanguageOptionsWebUIBrowserTest::SetBlankDictionariesPref() { | |
| 22 browser()->profile()->GetPrefs()->SetString(prefs::kSpellCheckDictionaries, | |
| 23 ""); | |
|
Dan Beam
2015/06/25 02:44:27
nit: std::string() instead of ""
Julius
2015/07/06 22:38:53
Done.
| |
| 24 } | |
| 25 | |
| 26 void MultilanguageOptionsWebUIBrowserTest::SetUpOnMainThread() { | |
| 27 WebUIBrowserTest::SetUpOnMainThread(); | |
| 28 #if defined(OS_CHROMEOS) | |
| 29 std::string setting_name = prefs::kLanguagePreferredLanguages; | |
| 30 #else | |
| 31 std::string setting_name = prefs::kAcceptLanguages; | |
| 32 #endif | |
| 33 | |
| 34 browser()->profile()->GetPrefs()->SetString(setting_name, "fr,es,de,en"); | |
| 35 browser()->profile()->GetPrefs()->SetString(prefs::kSpellCheckDictionaries, | |
| 36 "fr"); | |
| 37 } | |
| 38 | |
| 39 void MultilanguageOptionsWebUIBrowserTest::SetUpCommandLine( | |
| 40 base::CommandLine* command_line) { | |
| 41 WebUIBrowserTest::SetUpCommandLine(command_line); | |
| 42 command_line->AppendSwitch(switches::kEnableMultilingualSpellChecker); | |
| 43 } | |
| OLD | NEW |