Index: ui/base/ime/input_method_factory.cc |
diff --git a/ui/base/ime/input_method_factory.cc b/ui/base/ime/input_method_factory.cc |
index 597f3992a8f2d18781fd3f94d0d52d9a22121155..0b0af2524a5fc8162991452bab88674da8cf32b2 100644 |
--- a/ui/base/ime/input_method_factory.cc |
+++ b/ui/base/ime/input_method_factory.cc |
@@ -15,7 +15,7 @@ |
#include "ui/base/ime/input_method_tsf.h" |
#include "ui/base/ime/remote_input_method_win.h" |
#elif defined(USE_AURA) && defined(USE_X11) |
-#include "ui/base/ime/input_method_linux_x11.h" |
+#include "ui/base/ime/input_method_auralinux.h" |
#else |
#include "ui/base/ime/input_method_minimal.h" |
#endif |
@@ -66,7 +66,7 @@ scoped_ptr<InputMethod> DefaultInputMethodFactory::CreateInputMethod( |
return CreateRemoteInputMethodWin(delegate); |
return scoped_ptr<InputMethod>(new InputMethodIMM32(delegate, widget)); |
#elif defined(USE_AURA) && defined(USE_X11) |
- return scoped_ptr<InputMethod>(new InputMethodLinuxX11(delegate)); |
+ return scoped_ptr<InputMethod>(new InputMethodAuraLinux(delegate)); |
#else |
return scoped_ptr<InputMethod>(new InputMethodMinimal(delegate)); |
#endif |