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

Side by Side Diff: chrome/browser/chromeos/preferences_unittest.cc

Issue 12789006: base/prefs: Remove the public/ directory and move the files to //base/prefs. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 9 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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/preferences.h" 5 #include "chrome/browser/chromeos/preferences.h"
6 6
7 #include "base/prefs/public/pref_member.h" 7 #include "base/prefs/pref_member.h"
8 #include "chrome/browser/chromeos/input_method/mock_input_method_manager.h" 8 #include "chrome/browser/chromeos/input_method/mock_input_method_manager.h"
9 #include "chrome/browser/download/download_prefs.h" 9 #include "chrome/browser/download/download_prefs.h"
10 #include "chrome/common/pref_names.h" 10 #include "chrome/common/pref_names.h"
11 #include "chrome/test/base/testing_pref_service_syncable.h" 11 #include "chrome/test/base/testing_pref_service_syncable.h"
12 #include "testing/gtest/include/gtest/gtest.h" 12 #include "testing/gtest/include/gtest/gtest.h"
13 13
14 namespace chromeos { 14 namespace chromeos {
15 namespace { 15 namespace {
16 16
17 class MyMockInputMethodManager : public input_method::MockInputMethodManager { 17 class MyMockInputMethodManager : public input_method::MockInputMethodManager {
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 testee.InitUserPrefsForTesting(&prefs); 70 testee.InitUserPrefsForTesting(&prefs);
71 testee.SetInputMethodListForTesting(); 71 testee.SetInputMethodListForTesting();
72 72
73 // Confirm they're unchanged. 73 // Confirm they're unchanged.
74 EXPECT_EQ("KeyboardA", previous.GetValue()); 74 EXPECT_EQ("KeyboardA", previous.GetValue());
75 EXPECT_EQ("KeyboardB", current.GetValue()); 75 EXPECT_EQ("KeyboardB", current.GetValue());
76 EXPECT_EQ("KeyboardB", mock_manager.last_input_method_id_); 76 EXPECT_EQ("KeyboardB", mock_manager.last_input_method_id_);
77 } 77 }
78 78
79 } // namespace chromeos 79 } // namespace chromeos
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/preferences.cc ('k') | chrome/browser/chromeos/proxy_config_service_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698