| Index: ui/ozone/platform/egltest/ozone_platform_egltest.cc
|
| diff --git a/ui/ozone/platform/egltest/ozone_platform_egltest.cc b/ui/ozone/platform/egltest/ozone_platform_egltest.cc
|
| index d75c786da9908193bbe9a064d317b99c5fc1e4a3..bf1af9c069f4992534e7dc7c6ef36b434abfe5bf 100644
|
| --- a/ui/ozone/platform/egltest/ozone_platform_egltest.cc
|
| +++ b/ui/ozone/platform/egltest/ozone_platform_egltest.cc
|
| @@ -15,7 +15,6 @@
|
| #include "ui/gfx/ozone/impl/file_surface_factory.h"
|
| #include "ui/gfx/ozone/surface_ozone_egl.h"
|
| #include "ui/gfx/vsync_provider.h"
|
| -#include "ui/ozone/ime/input_method_context_factory_ozone.h"
|
| #include "ui/ozone/ozone_platform.h"
|
| #include "ui/ozone/ozone_switches.h"
|
|
|
| @@ -240,10 +239,6 @@ class OzonePlatformEgltest : 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();
|
| }
|
| @@ -260,8 +255,6 @@ class OzonePlatformEgltest : public OzonePlatform {
|
| surface_factory_ozone_.reset(new SurfaceFactoryEgltest(&eglplatform_shim_));
|
| event_factory_ozone_.reset(
|
| new EventFactoryEvdev(NULL, device_manager_.get()));
|
| - input_method_context_factory_ozone_.reset(
|
| - new InputMethodContextFactoryOzone());
|
| cursor_factory_ozone_.reset(new CursorFactoryOzone());
|
| }
|
|
|
| @@ -272,8 +265,6 @@ class OzonePlatformEgltest : public OzonePlatform {
|
| scoped_ptr<DeviceManager> device_manager_;
|
| scoped_ptr<SurfaceFactoryEgltest> surface_factory_ozone_;
|
| scoped_ptr<EventFactoryEvdev> event_factory_ozone_;
|
| - scoped_ptr<InputMethodContextFactoryOzone>
|
| - input_method_context_factory_ozone_;
|
| scoped_ptr<CursorFactoryOzone> cursor_factory_ozone_;
|
|
|
| bool shim_initialized_;
|
|
|