Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(82)

Side by Side Diff: chrome/browser/dom_ui/options/language_options_handler_unittest.cc

Issue 6265010: DOMUI settings: move/rename the language options panel so that it can be use... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/chromeos/dom_ui/language_options_handler.h" 5 // TODO(csilv): This is for the move CL. Changes to make this cross-platform
6 // will come in the followup CL.
7 #if defined(OS_CHROMEOS)
8
9 #include "chrome/browser/dom_ui/options/language_options_handler.h"
6 10
7 #include <string> 11 #include <string>
8 12
9 #include "base/scoped_ptr.h" 13 #include "base/scoped_ptr.h"
10 #include "base/values.h" 14 #include "base/values.h"
11 #include "chrome/browser/chromeos/cros/cros_library.h" 15 #include "chrome/browser/chromeos/cros/cros_library.h"
12 #include "chrome/browser/chromeos/cros/input_method_library.h" 16 #include "chrome/browser/chromeos/cros/input_method_library.h"
13 #include "testing/gtest/include/gtest/gtest.h" 17 #include "testing/gtest/include/gtest/gtest.h"
14 18
15 namespace chromeos { 19 namespace chromeos {
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after
164 // EXPECT_FALSE(dictionary->HasKey("no")); 168 // EXPECT_FALSE(dictionary->HasKey("no"));
165 } 169 }
166 170
167 TEST(LanguageOptionsHandlerTest, GetSpellCheckLanguageCodeSet) { 171 TEST(LanguageOptionsHandlerTest, GetSpellCheckLanguageCodeSet) {
168 scoped_ptr<DictionaryValue> dictionary( 172 scoped_ptr<DictionaryValue> dictionary(
169 LanguageOptionsHandler::GetSpellCheckLanguageCodeSet()); 173 LanguageOptionsHandler::GetSpellCheckLanguageCodeSet());
170 EXPECT_TRUE(dictionary->HasKey("en-US")); 174 EXPECT_TRUE(dictionary->HasKey("en-US"));
171 } 175 }
172 176
173 } // namespace chromeos 177 } // namespace chromeos
178
179 #endif // OS_CHROMEOS
180
OLDNEW
« no previous file with comments | « chrome/browser/dom_ui/options/language_options_handler.cc ('k') | chrome/browser/dom_ui/options/options_ui.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698