Index: ui/ozone/platform/test/ozone_platform_test.cc |
diff --git a/ui/ozone/platform/test/ozone_platform_test.cc b/ui/ozone/platform/test/ozone_platform_test.cc |
index 8dcbde7932641c15401faff742b1158759a9c451..7d8e6a1028f8799886d23b39acc3a3f35ef24219 100644 |
--- a/ui/ozone/platform/test/ozone_platform_test.cc |
+++ b/ui/ozone/platform/test/ozone_platform_test.cc |
@@ -10,7 +10,6 @@ |
#include "ui/events/ozone/device/device_manager.h" |
#include "ui/events/ozone/evdev/event_factory_evdev.h" |
#include "ui/gfx/ozone/impl/file_surface_factory.h" |
-#include "ui/ozone/ime/input_method_context_factory_ozone.h" |
#include "ui/ozone/ozone_platform.h" |
#include "ui/ozone/ozone_switches.h" |
@@ -37,10 +36,6 @@ class OzonePlatformTest : public OzonePlatform { |
virtual EventFactoryOzone* GetEventFactoryOzone() OVERRIDE { |
return event_factory_ozone_.get(); |
} |
- virtual InputMethodContextFactoryOzone* GetInputMethodContextFactoryOzone() |
- OVERRIDE { |
- return input_method_context_factory_ozone_.get(); |
- } |
virtual CursorFactoryOzone* GetCursorFactoryOzone() OVERRIDE { |
return cursor_factory_ozone_.get(); |
} |
@@ -57,8 +52,6 @@ class OzonePlatformTest : public OzonePlatform { |
surface_factory_ozone_.reset(new gfx::FileSurfaceFactory(file_path_)); |
event_factory_ozone_.reset( |
new EventFactoryEvdev(NULL, device_manager_.get())); |
- input_method_context_factory_ozone_.reset( |
- new InputMethodContextFactoryOzone()); |
cursor_factory_ozone_.reset(new CursorFactoryOzone()); |
} |
@@ -68,8 +61,6 @@ class OzonePlatformTest : public OzonePlatform { |
scoped_ptr<DeviceManager> device_manager_; |
scoped_ptr<gfx::FileSurfaceFactory> surface_factory_ozone_; |
scoped_ptr<EventFactoryEvdev> event_factory_ozone_; |
- scoped_ptr<InputMethodContextFactoryOzone> |
- input_method_context_factory_ozone_; |
scoped_ptr<CursorFactoryOzone> cursor_factory_ozone_; |
base::FilePath file_path_; |