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

Unified Diff: ui/ozone/platform/egltest/ozone_platform_egltest.cc

Issue 284323002: ozone: Remove InputMethodContextFactoryOzone and FakeInputMethodContextOzone. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 6 years, 7 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 side-by-side diff with in-line comments
Download patch
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_;

Powered by Google App Engine
This is Rietveld 408576698