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

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

Issue 2360013002: Remove unused version of SelectBetweenCoordinates() (Closed)
Patch Set: Created 4 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/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 a7f92639fa22c313db88252bc64615f8ebf06c4a..3aad21041526e98745d9c67f3db49316e044f3f7 100644
--- a/content/browser/android/content_view_core_impl.cc
+++ b/content/browser/android/content_view_core_impl.cc
@@ -1182,17 +1182,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