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

Unified Diff: views/view.cc

Issue 6688049: New InputMethod api for Views. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address review feedbacks. Created 9 years, 9 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: views/view.cc
diff --git a/views/view.cc b/views/view.cc
index fb377678788f32fa33c3e661d32ef623ec415dd8..18201f9b58364240e1826817fbb087415a78ec2f 100644
--- a/views/view.cc
+++ b/views/view.cc
@@ -838,6 +838,15 @@ bool View::OnMouseWheel(const MouseWheelEvent& event) {
return false;
}
+TextInputClient* View::GetTextInputClient() {
+ return NULL;
+}
+
+InputMethod* View::GetInputMethod() {
+ NOTIMPLEMENTED();
+ return NULL;
+}
+
// Accelerators ----------------------------------------------------------------
void View::AddAccelerator(const Accelerator& accelerator) {
« views/ime/input_method_gtk.cc ('K') | « views/view.h ('k') | views/views.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698