| Index: chrome/browser/chromeos/preferences_browsertest.cc
|
| diff --git a/chrome/browser/chromeos/preferences_browsertest.cc b/chrome/browser/chromeos/preferences_browsertest.cc
|
| index e9555111e57e405e0ca626bb68ecd65d9ad10721..76f0b8954d8bf3728e1d06d2d4b74ab63d68d081 100644
|
| --- a/chrome/browser/chromeos/preferences_browsertest.cc
|
| +++ b/chrome/browser/chromeos/preferences_browsertest.cc
|
| @@ -21,7 +21,7 @@
|
| #include "chrome/common/chrome_switches.h"
|
| #include "chrome/common/pref_names.h"
|
| #include "chromeos/chromeos_switches.h"
|
| -#include "chromeos/ime/fake_xkeyboard.h"
|
| +#include "chromeos/ime/fake_keyboard_controller.h"
|
| #include "content/public/test/test_utils.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
| #include "ui/events/event_utils.h"
|
| @@ -51,10 +51,10 @@ class PreferencesTest : public LoginManagerTest {
|
| LoginManagerTest::SetUpOnMainThread();
|
| input_settings_ = new system::FakeInputDeviceSettings();
|
| system::InputDeviceSettings::SetSettingsForTesting(input_settings_);
|
| - xkeyboard_ = new input_method::FakeXKeyboard();
|
| + xkeyboard_ = new input_method::FakeKeyboardController();
|
| static_cast<input_method::InputMethodManagerImpl*>(
|
| input_method::InputMethodManager::Get())
|
| - ->SetXKeyboardForTesting(xkeyboard_);
|
| + ->SetKeyboardControllerForTesting(xkeyboard_);
|
| CrosSettings::Get()->SetString(kDeviceOwner, kTestUsers[0]);
|
| }
|
|
|
| @@ -119,7 +119,7 @@ class PreferencesTest : public LoginManagerTest {
|
|
|
| private:
|
| system::FakeInputDeviceSettings* input_settings_;
|
| - input_method::FakeXKeyboard* xkeyboard_;
|
| + input_method::FakeKeyboardController* xkeyboard_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(PreferencesTest);
|
| };
|
|
|