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

Unified Diff: chrome/browser/chromeos/input_method/input_method_engine.cc

Issue 10828062: Delete an unused variable (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 5 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/input_method/input_method_engine.cc
diff --git a/chrome/browser/chromeos/input_method/input_method_engine.cc b/chrome/browser/chromeos/input_method/input_method_engine.cc
index bf9821929e0d2c55af754f96f8ea1f437be51fd2..5afa635d7b11d31bbde22e2c94461d15bb0abebc 100644
--- a/chrome/browser/chromeos/input_method/input_method_engine.cc
+++ b/chrome/browser/chromeos/input_method/input_method_engine.cc
@@ -524,11 +524,8 @@ void InputMethodEngineImpl::OnCandidateClicked(unsigned int index,
class InputMethodEngineStub : public InputMethodEngine {
public:
- InputMethodEngineStub()
- : observer_(NULL), active_(false) {}
-
- ~InputMethodEngineStub() {
- }
+ InputMethodEngineStub() : active_(false) {}
+ ~InputMethodEngineStub() {}
bool Init(InputMethodEngine::Observer* observer,
const char* engine_name,
@@ -620,9 +617,6 @@ class InputMethodEngineStub : public InputMethodEngine {
}
private:
- // Pointer to the object recieving events for this IME.
- InputMethodEngine::Observer* observer_;
-
// True when this IME is active, false if deactive.
bool active_;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698