| Index: content/browser/android/selection_popup_controller.cc
|
| diff --git a/content/browser/android/selection_popup_controller.cc b/content/browser/android/selection_popup_controller.cc
|
| index 70c142c870040f62831fc5ebe0f1bf8b1ac0903f..5f56370cce9459750efb07ade4fe4bf002d49f0d 100644
|
| --- a/content/browser/android/selection_popup_controller.cc
|
| +++ b/content/browser/android/selection_popup_controller.cc
|
| @@ -51,7 +51,6 @@ void SelectionPopupController::UpdateRenderProcessConnection(
|
|
|
| void SelectionPopupController::OnSelectionEvent(
|
| ui::SelectionEventType event,
|
| - const gfx::PointF& selection_anchor,
|
| const gfx::RectF& selection_rect) {
|
| JNIEnv* env = AttachCurrentThread();
|
| ScopedJavaLocalRef<jobject> obj = java_obj_.get(env);
|
| @@ -59,9 +58,8 @@ void SelectionPopupController::OnSelectionEvent(
|
| return;
|
|
|
| Java_SelectionPopupController_onSelectionEvent(
|
| - env, obj, event, selection_anchor.x(), selection_anchor.y(),
|
| - selection_rect.x(), selection_rect.y(), selection_rect.right(),
|
| - selection_rect.bottom());
|
| + env, obj, event, selection_rect.x(), selection_rect.y(),
|
| + selection_rect.right(), selection_rect.bottom());
|
| }
|
|
|
| void SelectionPopupController::OnSelectionChanged(const std::string& text) {
|
|
|