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

Unified Diff: chrome/browser/renderer_host/render_widget_host_view_views.cc

Issue 6289009: [Mac] Implement the system dictionary popup by implementing NSTextInput methods. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address comments Created 9 years, 10 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: chrome/browser/renderer_host/render_widget_host_view_views.cc
diff --git a/chrome/browser/renderer_host/render_widget_host_view_views.cc b/chrome/browser/renderer_host/render_widget_host_view_views.cc
index 849924f72515812f4f584f8ac927313101424cbc..b6bfbe40d99367a31e001ff5bb356dde61f7e067 100644
--- a/chrome/browser/renderer_host/render_widget_host_view_views.cc
+++ b/chrome/browser/renderer_host/render_widget_host_view_views.cc
@@ -480,7 +480,9 @@ void RenderWidgetHostViewViews::SetTooltipText(const std::wstring& tip) {
// NOTIMPLEMENTED(); ... too annoying, it triggers for every mousemove
}
-void RenderWidgetHostViewViews::SelectionChanged(const std::string& text) {
+void RenderWidgetHostViewViews::SelectionChanged(const std::string& text,
+ int start,
+ int end) {
// TODO(anicolao): deal with the clipboard without GTK
NOTIMPLEMENTED();
}

Powered by Google App Engine
This is Rietveld 408576698