Index: content/browser/android/popup_touch_handle_drawable.cc |
diff --git a/content/browser/android/popup_touch_handle_drawable.cc b/content/browser/android/popup_touch_handle_drawable.cc |
index aef23f8fb0f9696f94bcf038d5320cd64fa345c6..6de1bfa3787343d96e82710f8eef5d1b6f924526 100644 |
--- a/content/browser/android/popup_touch_handle_drawable.cc |
+++ b/content/browser/android/popup_touch_handle_drawable.cc |
@@ -30,11 +30,14 @@ void PopupTouchHandleDrawable::SetEnabled(bool enabled) { |
} |
void PopupTouchHandleDrawable::SetOrientation( |
- ui::TouchHandleOrientation orientation) { |
+ ui::TouchHandleOrientation orientation, |
+ bool mirror_vertical, |
+ bool mirror_horizontal) { |
JNIEnv* env = base::android::AttachCurrentThread(); |
jobject obj = drawable_.obj(); |
- Java_PopupTouchHandleDrawable_setOrientation(env, obj, |
- static_cast<int>(orientation)); |
+ Java_PopupTouchHandleDrawable_setOrientation( |
+ env, obj, static_cast<int>(orientation), mirror_vertical, |
+ mirror_horizontal); |
} |
void PopupTouchHandleDrawable::SetAlpha(float alpha) { |