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

Unified Diff: views/view.cc

Issue 6688049: New InputMethod api for Views. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add an OWNERS file. 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 a66587eca6c51a77682116a7933d9648cd78bf5a..631b1cb01f2a33129080aa2f4a71b2c49726dcb5 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/text_input_client.h ('K') | « views/view.h ('k') | views/views.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698