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

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

Issue 10928199: Add ExtendSelectionAndDelete() method to ui::TextInputClient. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: change int to size_t Created 8 years, 3 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_aura.cc
diff --git a/content/browser/renderer_host/render_widget_host_view_aura.cc b/content/browser/renderer_host/render_widget_host_view_aura.cc
index a590fd7651d3557fdba3279b0a49084723275d96..573ca12ea2929627ce40f6c75f0099fb90ebb594 100644
--- a/content/browser/renderer_host/render_widget_host_view_aura.cc
+++ b/content/browser/renderer_host/render_widget_host_view_aura.cc
@@ -1166,6 +1166,13 @@ bool RenderWidgetHostViewAura::ChangeTextDirectionAndLayoutAlignment(
return true;
}
+void RenderWidgetHostViewAura::ExtendSelectionAndDelete(
+ size_t before, size_t after) {
+ // TODO(horo): implement this method if it is required.
+ // http://crbug.com/149155
+ NOTIMPLEMENTED();
+}
+
////////////////////////////////////////////////////////////////////////////////
// RenderWidgetHostViewAura, aura::WindowDelegate implementation:

Powered by Google App Engine
This is Rietveld 408576698