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

Unified Diff: content/browser/android/content_view_core_impl.cc

Issue 2201853002: Blink handle selection handle visibility (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: default handle visibility should be false Created 4 years, 4 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/android/content_view_core_impl.cc
diff --git a/content/browser/android/content_view_core_impl.cc b/content/browser/android/content_view_core_impl.cc
index 108ecdec73adf1364a3297863d1a430026d96620..89b8f8eabb170f0a6b166ac3abb19ed64e89a024 100644
--- a/content/browser/android/content_view_core_impl.cc
+++ b/content/browser/android/content_view_core_impl.cc
@@ -1207,17 +1207,6 @@ void ContentViewCoreImpl::PinchBy(JNIEnv* env,
SendGestureEvent(event);
}
-void ContentViewCoreImpl::SelectBetweenCoordinates(
- JNIEnv* env,
- const JavaParamRef<jobject>& obj,
- jfloat x1,
- jfloat y1,
- jfloat x2,
- jfloat y2) {
- SelectBetweenCoordinates(gfx::PointF(x1 / dpi_scale(), y1 / dpi_scale()),
- gfx::PointF(x2 / dpi_scale(), y2 / dpi_scale()));
-}
-
void ContentViewCoreImpl::DismissTextHandles(JNIEnv* env,
const JavaParamRef<jobject>& obj) {
RenderWidgetHostViewAndroid* rwhv = GetRenderWidgetHostViewAndroid();

Powered by Google App Engine
This is Rietveld 408576698