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

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

Issue 996373002: Add Aura handles to be used in unified touch selection (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed issues with loading resources Created 5 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
« no previous file with comments | « no previous file | ui/resources/ui_resources.grd » ('j') | ui/touch_selection/touch_selection_controller_aura.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/renderer_host/render_widget_host_view_android.cc
diff --git a/content/browser/renderer_host/render_widget_host_view_android.cc b/content/browser/renderer_host/render_widget_host_view_android.cc
index 339fec9359479b8e4d1c9ffaf578260748595c82..b159689d62d9b685cf3b62935dabcf99bbc8f07a 100644
--- a/content/browser/renderer_host/render_widget_host_view_android.cc
+++ b/content/browser/renderer_host/render_widget_host_view_android.cc
@@ -1348,7 +1348,7 @@ void RenderWidgetHostViewAndroid::OnFrameMetadataUpdated(
overscroll_controller_->OnFrameMetadataUpdated(frame_metadata);
if (selection_controller_) {
- selection_controller_->OnSelectionBoundsChanged(
+ selection_controller_->OnSelectionBoundsUpdated(
ConvertSelectionBound(frame_metadata.selection_start),
ConvertSelectionBound(frame_metadata.selection_end));
}
@@ -1668,7 +1668,7 @@ void RenderWidgetHostViewAndroid::OnShowingPastePopup(
selection_controller_->HideAndDisallowShowingAutomatically();
selection_controller_->OnSelectionEditable(true);
selection_controller_->OnSelectionEmpty(true);
- selection_controller_->OnSelectionBoundsChanged(insertion_bound,
+ selection_controller_->OnSelectionBoundsUpdated(insertion_bound,
insertion_bound);
selection_controller_->AllowShowingFromCurrentSelection();
}
« no previous file with comments | « no previous file | ui/resources/ui_resources.grd » ('j') | ui/touch_selection/touch_selection_controller_aura.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698