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

Unified Diff: content/browser/renderer_host/render_widget_host_view_base.cc

Issue 173803002: Redesigns the text input focus handling. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed review comments from msw. Created 6 years, 8 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: content/browser/renderer_host/render_widget_host_view_base.cc
diff --git a/content/browser/renderer_host/render_widget_host_view_base.cc b/content/browser/renderer_host/render_widget_host_view_base.cc
index 197960fed6152762e78077f530c6f6d935f43dc3..0aad9dc699f203d53d884ab0dbb2bc99c927d71f 100644
--- a/content/browser/renderer_host/render_widget_host_view_base.cc
+++ b/content/browser/renderer_host/render_widget_host_view_base.cc
@@ -425,6 +425,11 @@ void RenderWidgetHostViewBase::SelectionChanged(const base::string16& text,
selection_range_.set_end(range.end());
}
+ui::TextInputClient* RenderWidgetHostViewBase::GetTextInputClient() {
+ NOTREACHED();
+ return NULL;
+}
+
bool RenderWidgetHostViewBase::IsShowingContextMenu() const {
return showing_context_menu_;
}

Powered by Google App Engine
This is Rietveld 408576698