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

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

Issue 10692077: enable -Wunused-private-field for linux and chromeos. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: chromeos fixes Created 8 years, 6 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 | « build/common.gypi ('k') | chrome/browser/chromeos/process_proxy/process_proxy_browsertest.cc » ('j') | 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 39a41754b3252dd210526d4329e7d629a87bc3fa..bf9821929e0d2c55af754f96f8ea1f437be51fd2 100644
--- a/chrome/browser/chromeos/input_method/input_method_engine.cc
+++ b/chrome/browser/chromeos/input_method/input_method_engine.cc
@@ -525,8 +525,7 @@ void InputMethodEngineImpl::OnCandidateClicked(unsigned int index,
class InputMethodEngineStub : public InputMethodEngine {
public:
InputMethodEngineStub()
- : observer_(NULL), active_(false), next_context_id_(1),
- context_id_(-1) {}
+ : observer_(NULL), active_(false) {}
~InputMethodEngineStub() {
}
@@ -627,12 +626,6 @@ class InputMethodEngineStub : public InputMethodEngine {
// True when this IME is active, false if deactive.
bool active_;
- // Next id that will be assigned to a context.
- int next_context_id_;
-
- // ID that is used for the current input context. False if there is no focus.
- int context_id_;
-
// User specified id of this IME.
std::string engine_id_;
};
« no previous file with comments | « build/common.gypi ('k') | chrome/browser/chromeos/process_proxy/process_proxy_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698