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

Unified Diff: content/renderer/ime_event_guard.h

Issue 2596193002: Clean up names and remove unnecessary parameter (Closed)
Patch Set: rebase Created 3 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
« no previous file with comments | « content/public/test/text_input_test_utils.cc ('k') | content/renderer/ime_event_guard.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/ime_event_guard.h
diff --git a/content/renderer/ime_event_guard.h b/content/renderer/ime_event_guard.h
index 6d6991214e420200c594b07cb18addc14d5c0025..1df77f34d3320f87753c6f7a248723c065572597 100644
--- a/content/renderer/ime_event_guard.h
+++ b/content/renderer/ime_event_guard.h
@@ -15,15 +15,14 @@ class ImeEventGuard {
explicit ImeEventGuard(RenderWidget* widget);
~ImeEventGuard();
- bool show_ime() const { return show_ime_; }
- bool from_ime() const { return from_ime_; }
- void set_show_ime(bool show_ime) { show_ime_ = show_ime; }
- void set_from_ime(bool from_ime) { from_ime_ = from_ime; }
+ bool show_virtual_keyboard() const { return show_virtual_keyboard_; }
+ bool reply_to_request() const { return reply_to_request_; }
+ void set_show_virtual_keyboard(bool show) { show_virtual_keyboard_ = show; }
private:
RenderWidget* widget_;
- bool show_ime_;
- bool from_ime_;
+ bool show_virtual_keyboard_;
+ bool reply_to_request_;
};
}
« no previous file with comments | « content/public/test/text_input_test_utils.cc ('k') | content/renderer/ime_event_guard.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698