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" | |
|
Dan Beam
2015/06/17 23:42:01
why is this needed?
Julius
2015/06/24 21:17:58
It's included for browser()->profile()
| |
| 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::SetUpOnMainThread() { | |
| 22 WebUIBrowserTest::SetUpOnMainThread(); | |
| 23 #if defined(OS_CHROMEOS) | |
| 24 std::string setting_name = prefs::kLanguagePreferredLanguages; | |
| 25 #else | |
| 26 std::string setting_name = prefs::kAcceptLanguages; | |
| 27 #endif | |
| 28 | |
| 29 browser()->profile()->GetPrefs()->SetString(setting_name, "fr,es,de"); | |
| 30 browser()->profile()->GetPrefs()->SetString(prefs::kSpellCheckDictionaries, | |
| 31 "fr"); | |
| 32 } | |
| 33 | |
| 34 void MultilanguageOptionsWebUIBrowserTest::SetUpCommandLine( | |
| 35 base::CommandLine* command_line) { | |
| 36 WebUIBrowserTest::SetUpCommandLine(command_line); | |
| 37 command_line->AppendSwitch(switches::kEnableMultilingualSpellChecker); | |
| 38 } | |
| OLD | NEW |