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

Unified Diff: ui/base/ime/input_method_ibus.h

Issue 11956008: Move SetCursorLocation bypass code. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix unit tests Created 7 years, 11 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/base/ime/input_method_ibus.h
diff --git a/ui/base/ime/input_method_ibus.h b/ui/base/ime/input_method_ibus.h
index 4f486cc3aa0548cdb9a7fce985c675de7459c2b7..70a540f3866f8da08395b72b35b7171e5ecae7eb 100644
--- a/ui/base/ime/input_method_ibus.h
+++ b/ui/base/ime/input_method_ibus.h
@@ -15,7 +15,6 @@
#include "chromeos/dbus/ibus/ibus_input_context_client.h"
#include "ui/base/ime/character_composer.h"
#include "ui/base/ime/composition_text.h"
-#include "ui/base/ime/ibus_client.h"
#include "ui/base/ime/input_method_base.h"
namespace dbus {
@@ -57,13 +56,6 @@ class UI_EXPORT InputMethodIBus
// Called when the connection with ibus-daemon is shutdowned.
virtual void OnDisconnected();
- // Sets |new_client| as a new IBusClient. InputMethodIBus owns the object.
- // A client has to be set before InputMethodIBus::Init() is called.
- void set_ibus_client(scoped_ptr<internal::IBusClient> new_client);
-
- // The caller is not allowed to delete the object.
- internal::IBusClient* ibus_client() const;
-
protected:
// Converts |text| into CompositionText.
void ExtractCompositionText(const chromeos::ibus::IBusText& text,
@@ -182,8 +174,6 @@ class UI_EXPORT InputMethodIBus
void ProcessKeyEventDone(uint32 id, XEvent* xevent, uint32 keyval,
bool is_handled);
- scoped_ptr<internal::IBusClient> ibus_client_;
-
// All pending key events. Note: we do not own these object, we just save
// pointers to these object so that we can abandon them when necessary.
// They will be deleted in ProcessKeyEventDone().

Powered by Google App Engine
This is Rietveld 408576698