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

Unified Diff: chrome/browser/chromeos/input_method/input_method_engine_ibus.h

Issue 70053003: Delete IBusEngineService. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 1 month 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: chrome/browser/chromeos/input_method/input_method_engine_ibus.h
diff --git a/chrome/browser/chromeos/input_method/input_method_engine_ibus.h b/chrome/browser/chromeos/input_method/input_method_engine_ibus.h
index d7a4a311d128ac310a70c5d0d5e5d5ce91764101..bd9c81b6486308f08f5a21815828e2a28c6fbdea 100644
--- a/chrome/browser/chromeos/input_method/input_method_engine_ibus.h
+++ b/chrome/browser/chromeos/input_method/input_method_engine_ibus.h
@@ -17,8 +17,6 @@ namespace chromeos {
class IBusText;
-class IBusEngineService;
-
namespace input_method {
class CandidateWindow;
struct KeyEventHandle;
@@ -113,10 +111,6 @@ class InputMethodEngineIBus : public InputMethodEngine,
// corresponding engine id.
void CreateEngineHandler();
- // Returns current IBusEngineService, if there is no available service, this
- // function returns NULL.
- IBusEngineService* GetCurrentService();
-
// True if the current context has focus.
bool focused_;
@@ -135,9 +129,6 @@ class InputMethodEngineIBus : public InputMethodEngine,
// This IME ID in ibus.
std::string ibus_id_;
- // Flag whether CreateEngineHandler is called or not.
- bool is_create_engine_handler_called_;
-
// The current auxialy text and it's visiblity.
scoped_ptr<IBusText> aux_text_;
bool aux_text_visible_;
@@ -164,8 +155,6 @@ class InputMethodEngineIBus : public InputMethodEngine,
// Mapping of candidate id to index.
std::map<int, int> candidate_indexes_;
- scoped_ptr<IBusEngineService> ibus_engine_service_;
-
// Used for making callbacks.
base::WeakPtrFactory<InputMethodEngineIBus> weak_ptr_factory_;
};

Powered by Google App Engine
This is Rietveld 408576698