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

Issue 2708613002: Add EventForwarder for routing touch events (Closed)

Created:
3 years, 10 months ago by Jinsuk Kim
Modified:
3 years, 9 months ago
CC:
agrieve+watch_chromium.org, android-webview-reviews_chromium.org, chromium-reviews, darin-cc_chromium.org, jam
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Add EventForwarder for routing touch events EventForwarder replaces ContentViewCore for forwarding Java input/view events to native content. The instance that embedders uses can be obtained via |WebContents.getEventForwarder()|. BUG=671401 Review-Url: https://codereview.chromium.org/2708613002 Cr-Commit-Position: refs/heads/master@{#455913} Committed: https://chromium.googlesource.com/chromium/src/+/5c3a120fa6ff650943131fd0a288adcaf6ccd895

Patch Set 1 #

Patch Set 2 : - #

Total comments: 2

Patch Set 3 : EventHandler #

Total comments: 34

Patch Set 4 : rebased #

Total comments: 20

Patch Set 5 : comments #

Total comments: 14

Patch Set 6 : unittests #

Total comments: 64

Patch Set 7 : removed MotionEventData #

Total comments: 39

Patch Set 8 : base::Bind (doesn't compile yet) #

Total comments: 20

Patch Set 9 : comments #

Total comments: 2

Patch Set 10 : comment #

Total comments: 4

Patch Set 11 : nits #

Total comments: 2

Patch Set 12 : OffsetCachedPointer #

Patch Set 13 : rebased #

Patch Set 14 : fix build #

Patch Set 15 : EventForwarder... #

Unified diffs Side-by-side diffs Delta from patch set Stats (+1065 lines, -557 lines) Patch
M android_webview/java/src/org/chromium/android_webview/AwContents.java View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 1 chunk +1 line, -1 line 0 comments Download
M android_webview/java/src/org/chromium/android_webview/PopupTouchHandleDrawable.java View 3 4 5 6 7 8 9 10 11 12 13 14 1 chunk +3 lines, -1 line 0 comments Download
M chrome/android/java/src/org/chromium/chrome/browser/compositor/CompositorViewHolder.java View 1 2 3 4 5 6 7 8 9 10 11 12 2 chunks +2 lines, -6 lines 0 comments Download
M chrome/android/java/src/org/chromium/chrome/browser/compositor/layouts/LayoutManager.java View 1 2 2 chunks +2 lines, -5 lines 0 comments Download
M content/browser/android/content_view_core_impl.h View 1 2 3 4 5 6 7 8 9 10 11 12 2 chunks +1 line, -44 lines 0 comments Download
M content/browser/android/content_view_core_impl.cc View 1 2 3 4 5 6 7 8 9 10 11 12 4 chunks +10 lines, -132 lines 0 comments Download
M content/browser/renderer_host/render_widget_host_view_android.h View 1 2 3 4 5 6 7 8 9 10 11 12 4 chunks +8 lines, -1 line 0 comments Download
M content/browser/renderer_host/render_widget_host_view_android.cc View 1 2 3 4 5 6 7 8 9 10 11 12 8 chunks +34 lines, -10 lines 0 comments Download
M content/browser/web_contents/web_contents_android.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 1 chunk +4 lines, -0 lines 0 comments Download
M content/browser/web_contents/web_contents_android.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 1 chunk +7 lines, -0 lines 0 comments Download
M content/browser/web_contents/web_contents_view_android.h View 1 2 3 4 5 6 3 chunks +7 lines, -1 line 0 comments Download
M content/browser/web_contents/web_contents_view_android.cc View 1 2 3 4 5 6 3 chunks +11 lines, -3 lines 0 comments Download
M content/public/android/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +0 lines, -1 line 0 comments Download
M content/public/android/java/src/org/chromium/content/browser/ContentView.java View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 4 chunks +10 lines, -1 line 0 comments Download
M content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 10 chunks +22 lines, -164 lines 0 comments Download
D content/public/android/java/src/org/chromium/content/browser/SPenSupport.java View 1 2 1 chunk +0 lines, -70 lines 0 comments Download
M content/public/android/java/src/org/chromium/content/browser/webcontents/WebContentsImpl.java View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 4 chunks +13 lines, -0 lines 0 comments Download
M content/public/android/java/src/org/chromium/content_public/browser/WebContents.java View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 2 chunks +7 lines, -0 lines 0 comments Download
M ui/android/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 7 chunks +11 lines, -0 lines 0 comments Download
M ui/android/DEPS View 1 2 1 chunk +2 lines, -0 lines 0 comments Download
A ui/android/event_forwarder.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 1 chunk +81 lines, -0 lines 0 comments Download
A ui/android/event_forwarder.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 1 chunk +112 lines, -0 lines 0 comments Download
A ui/android/java/src/org/chromium/ui/base/EventForwarder.java View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 1 chunk +195 lines, -0 lines 0 comments Download
A + ui/android/java/src/org/chromium/ui/base/SPenSupport.java View 1 2 3 4 5 6 3 chunks +17 lines, -14 lines 0 comments Download
M ui/android/ui_android_jni_registrar.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 2 chunks +2 lines, -0 lines 0 comments Download
M ui/android/view_android.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 6 chunks +86 lines, -6 lines 0 comments Download
M ui/android/view_android.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 6 chunks +114 lines, -11 lines 0 comments Download
A ui/android/view_android_unittests.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 1 chunk +169 lines, -0 lines 0 comments Download
A ui/android/view_client.h View 1 2 3 4 5 6 1 chunk +28 lines, -0 lines 0 comments Download
A ui/android/view_client.cc View 1 2 3 4 5 6 1 chunk +18 lines, -0 lines 0 comments Download
M ui/events/android/motion_event_android.h View 1 2 3 4 5 6 7 8 9 10 11 5 chunks +13 lines, -1 line 0 comments Download
M ui/events/android/motion_event_android.cc View 1 2 3 4 5 6 7 8 9 10 11 6 chunks +54 lines, -1 line 0 comments Download
M ui/events/android/motion_event_android_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 7 chunks +21 lines, -84 lines 0 comments Download

Messages

Total messages: 93 (35 generated)
Jinsuk Kim
dtrainor@chromium.org: Please review changes in chrome/ boliu@chromium.org: Please review changes in content/, ui/ Notes: - ...
3 years, 10 months ago (2017-02-20 22:55:44 UTC) #11
boliu
+1 to deleting ViewRoot, probably before this CL. We should to back to EventHandler that's ...
3 years, 10 months ago (2017-02-21 16:23:30 UTC) #12
Jinsuk Kim
On 2017/02/21 16:23:30, boliu wrote: > +1 to deleting ViewRoot, probably before this CL. > ...
3 years, 10 months ago (2017-02-21 19:48:16 UTC) #13
boliu
On 2017/02/21 19:48:16, Jinsuk Kim wrote: > On 2017/02/21 16:23:30, boliu wrote: > > +1 ...
3 years, 10 months ago (2017-02-21 21:28:22 UTC) #14
Jinsuk Kim
- Renamed EventForwarder to EventHandler, and moved to ui/android - Migrated |onTouchEvent| for an example, ...
3 years, 9 months ago (2017-02-26 23:18:28 UTC) #17
boliu
only looked at ui https://codereview.chromium.org/2708613002/diff/80001/ui/android/event_handler.cc File ui/android/event_handler.cc (right): https://codereview.chromium.org/2708613002/diff/80001/ui/android/event_handler.cc#newcode38 ui/android/event_handler.cc:38: : view_(view), dip_scale_(view->GetDipScale()) {} don't ...
3 years, 9 months ago (2017-02-27 19:21:57 UTC) #18
David Trainor- moved to gerrit
https://codereview.chromium.org/2708613002/diff/100001/content/browser/renderer_host/render_widget_host_view_android.cc File content/browser/renderer_host/render_widget_host_view_android.cc (right): https://codereview.chromium.org/2708613002/diff/100001/content/browser/renderer_host/render_widget_host_view_android.cc#newcode1776 content/browser/renderer_host/render_widget_host_view_android.cc:1776: bool is_touch_handle_event) { We should look at how we ...
3 years, 9 months ago (2017-02-28 01:31:24 UTC) #19
boliu
https://codereview.chromium.org/2708613002/diff/80001/ui/android/view_android.cc File ui/android/view_android.cc (right): https://codereview.chromium.org/2708613002/diff/80001/ui/android/view_android.cc#newcode258 ui/android/view_android.cc:258: if (client_ && client_->OnTouchEvent(event, is_touch_handle_event)) On 2017/02/27 19:21:57, boliu ...
3 years, 9 months ago (2017-02-28 03:18:16 UTC) #20
Jinsuk Kim
https://codereview.chromium.org/2708613002/diff/80001/ui/android/event_handler.cc File ui/android/event_handler.cc (right): https://codereview.chromium.org/2708613002/diff/80001/ui/android/event_handler.cc#newcode38 ui/android/event_handler.cc:38: : view_(view), dip_scale_(view->GetDipScale()) {} On 2017/02/27 19:21:56, boliu wrote: ...
3 years, 9 months ago (2017-02-28 06:56:05 UTC) #21
boliu
only looked at ui diff https://codereview.chromium.org/2708613002/diff/80001/ui/android/java/src/org/chromium/ui/base/EventHandler.java File ui/android/java/src/org/chromium/ui/base/EventHandler.java (right): https://codereview.chromium.org/2708613002/diff/80001/ui/android/java/src/org/chromium/ui/base/EventHandler.java#newcode128 ui/android/java/src/org/chromium/ui/base/EventHandler.java:128: mFocusPreOSKViewportRect.setEmpty(); On 2017/02/28 06:56:04, ...
3 years, 9 months ago (2017-02-28 22:44:55 UTC) #23
David Trainor- moved to gerrit
3 years, 9 months ago (2017-03-01 22:48:54 UTC) #25
Jinsuk Kim
https://codereview.chromium.org/2708613002/diff/80001/ui/android/java/src/org/chromium/ui/base/EventHandler.java File ui/android/java/src/org/chromium/ui/base/EventHandler.java (right): https://codereview.chromium.org/2708613002/diff/80001/ui/android/java/src/org/chromium/ui/base/EventHandler.java#newcode128 ui/android/java/src/org/chromium/ui/base/EventHandler.java:128: mFocusPreOSKViewportRect.setEmpty(); On 2017/02/28 22:44:50, boliu wrote: > On 2017/02/28 ...
3 years, 9 months ago (2017-03-02 04:08:35 UTC) #26
Jinsuk Kim
aelias@ Could you give your thought? https://codereview.chromium.org/2708613002/diff/140001/ui/android/view_client.h#newcode18
3 years, 9 months ago (2017-03-02 04:09:55 UTC) #28
aelias_OOO_until_Jul13
https://codereview.chromium.org/2708613002/diff/140001/ui/android/view_client.h File ui/android/view_client.h (right): https://codereview.chromium.org/2708613002/diff/140001/ui/android/view_client.h#newcode18 ui/android/view_client.h:18: struct MotionEventData { I tend to agree with Bo. ...
3 years, 9 months ago (2017-03-02 04:17:43 UTC) #29
aelias_OOO_until_Jul13
https://codereview.chromium.org/2708613002/diff/140001/ui/android/view_client.h File ui/android/view_client.h (right): https://codereview.chromium.org/2708613002/diff/140001/ui/android/view_client.h#newcode18 ui/android/view_client.h:18: struct MotionEventData { On 2017/03/02 at 04:17:42, aelias wrote: ...
3 years, 9 months ago (2017-03-02 04:21:46 UTC) #30
boliu
https://codereview.chromium.org/2708613002/diff/80001/ui/android/java/src/org/chromium/ui/base/EventHandler.java File ui/android/java/src/org/chromium/ui/base/EventHandler.java (right): https://codereview.chromium.org/2708613002/diff/80001/ui/android/java/src/org/chromium/ui/base/EventHandler.java#newcode128 ui/android/java/src/org/chromium/ui/base/EventHandler.java:128: mFocusPreOSKViewportRect.setEmpty(); On 2017/03/02 04:08:34, Jinsuk Kim wrote: > On ...
3 years, 9 months ago (2017-03-02 20:58:14 UTC) #31
Khushal
Only looked at ui/ for now. I'll take a look at content/ changes as well. ...
3 years, 9 months ago (2017-03-02 21:46:15 UTC) #32
boliu
https://codereview.chromium.org/2708613002/diff/160001/ui/android/event_handler.h File ui/android/event_handler.h (right): https://codereview.chromium.org/2708613002/diff/160001/ui/android/event_handler.h#newcode22 ui/android/event_handler.h:22: static EventHandler* Create(ViewAndroid* view); On 2017/03/02 21:46:15, Khushal wrote: ...
3 years, 9 months ago (2017-03-02 22:02:16 UTC) #33
Khushal
https://codereview.chromium.org/2708613002/diff/160001/content/browser/web_contents/web_contents_android.h File content/browser/web_contents/web_contents_android.h (right): https://codereview.chromium.org/2708613002/diff/160001/content/browser/web_contents/web_contents_android.h#newcode203 content/browser/web_contents/web_contents_android.h:203: base::android::ScopedJavaLocalRef<jobject> CreateEventHandler( nit: GetOrCreateEventHandler since it will create the ...
3 years, 9 months ago (2017-03-02 22:08:59 UTC) #34
boliu
https://codereview.chromium.org/2708613002/diff/160001/ui/android/view_android.cc File ui/android/view_android.cc (right): https://codereview.chromium.org/2708613002/diff/160001/ui/android/view_android.cc#newcode102 ui/android/view_android.cc:102: DCHECK(!ViewTreeHasEventHandler(GetViewRoot())) On 2017/03/02 22:08:59, Khushal wrote: > On 2017/03/02 ...
3 years, 9 months ago (2017-03-02 22:17:42 UTC) #35
Khushal
https://codereview.chromium.org/2708613002/diff/160001/content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java File content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java (left): https://codereview.chromium.org/2708613002/diff/160001/content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java#oldcode1003 content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java:1003: requestUnbufferedDispatch(event); Did we miss to move this to EventHandler?
3 years, 9 months ago (2017-03-02 22:17:43 UTC) #36
Khushal
https://codereview.chromium.org/2708613002/diff/160001/ui/android/view_android.cc File ui/android/view_android.cc (right): https://codereview.chromium.org/2708613002/diff/160001/ui/android/view_android.cc#newcode102 ui/android/view_android.cc:102: DCHECK(!ViewTreeHasEventHandler(GetViewRoot())) On 2017/03/02 22:17:41, boliu wrote: > On 2017/03/02 ...
3 years, 9 months ago (2017-03-02 22:34:35 UTC) #37
boliu
https://codereview.chromium.org/2708613002/diff/160001/ui/android/view_android.cc File ui/android/view_android.cc (right): https://codereview.chromium.org/2708613002/diff/160001/ui/android/view_android.cc#newcode102 ui/android/view_android.cc:102: DCHECK(!ViewTreeHasEventHandler(GetViewRoot())) On 2017/03/02 22:34:34, Khushal wrote: > On 2017/03/02 ...
3 years, 9 months ago (2017-03-02 22:41:50 UTC) #38
Khushal
https://codereview.chromium.org/2708613002/diff/160001/ui/android/view_android.cc File ui/android/view_android.cc (right): https://codereview.chromium.org/2708613002/diff/160001/ui/android/view_android.cc#newcode102 ui/android/view_android.cc:102: DCHECK(!ViewTreeHasEventHandler(GetViewRoot())) On 2017/03/02 22:41:50, boliu wrote: > On 2017/03/02 ...
3 years, 9 months ago (2017-03-02 23:11:36 UTC) #39
Khushal
https://codereview.chromium.org/2708613002/diff/160001/ui/android/view_android.cc File ui/android/view_android.cc (right): https://codereview.chromium.org/2708613002/diff/160001/ui/android/view_android.cc#newcode102 ui/android/view_android.cc:102: DCHECK(!ViewTreeHasEventHandler(GetViewRoot())) On 2017/03/02 22:41:50, boliu wrote: > On 2017/03/02 ...
3 years, 9 months ago (2017-03-02 23:11:37 UTC) #40
boliu
https://codereview.chromium.org/2708613002/diff/160001/ui/android/view_android.cc File ui/android/view_android.cc (right): https://codereview.chromium.org/2708613002/diff/160001/ui/android/view_android.cc#newcode102 ui/android/view_android.cc:102: DCHECK(!ViewTreeHasEventHandler(GetViewRoot())) On 2017/03/02 23:11:36, Khushal wrote: > On 2017/03/02 ...
3 years, 9 months ago (2017-03-02 23:16:07 UTC) #41
Khushal
https://codereview.chromium.org/2708613002/diff/160001/ui/android/view_android.cc File ui/android/view_android.cc (right): https://codereview.chromium.org/2708613002/diff/160001/ui/android/view_android.cc#newcode102 ui/android/view_android.cc:102: DCHECK(!ViewTreeHasEventHandler(GetViewRoot())) On 2017/03/02 23:16:06, boliu wrote: > On 2017/03/02 ...
3 years, 9 months ago (2017-03-03 00:37:55 UTC) #42
Jinsuk Kim
https://codereview.chromium.org/2708613002/diff/80001/ui/android/java/src/org/chromium/ui/base/EventHandler.java File ui/android/java/src/org/chromium/ui/base/EventHandler.java (right): https://codereview.chromium.org/2708613002/diff/80001/ui/android/java/src/org/chromium/ui/base/EventHandler.java#newcode128 ui/android/java/src/org/chromium/ui/base/EventHandler.java:128: mFocusPreOSKViewportRect.setEmpty(); On 2017/03/02 20:58:14, boliu wrote: > On 2017/03/02 ...
3 years, 9 months ago (2017-03-03 06:29:22 UTC) #43
boliu
replying to old comment I missed.. https://codereview.chromium.org/2708613002/diff/160001/ui/android/view_android.cc File ui/android/view_android.cc (right): https://codereview.chromium.org/2708613002/diff/160001/ui/android/view_android.cc#newcode223 ui/android/view_android.cc:223: void ViewAndroid::SetLayout(int x, ...
3 years, 9 months ago (2017-03-03 19:46:18 UTC) #44
boliu
pretty close now \o/ https://codereview.chromium.org/2708613002/diff/180001/content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java File content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java (right): https://codereview.chromium.org/2708613002/diff/180001/content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java#newcode1307 content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java:1307: if (mShouldRequestUnbufferedDispatch) requestUnbufferedDispatch(event); this unbuffereddispatch ...
3 years, 9 months ago (2017-03-03 22:01:32 UTC) #45
David Trainor- moved to gerrit
https://codereview.chromium.org/2708613002/diff/160001/ui/android/view_android.cc File ui/android/view_android.cc (right): https://codereview.chromium.org/2708613002/diff/160001/ui/android/view_android.cc#newcode141 ui/android/view_android.cc:141: void ViewAndroid::MoveToTop(ViewAndroid* child) { MoveToFront feels more clear https://codereview.chromium.org/2708613002/diff/160001/ui/android/view_android.cc#newcode223 ...
3 years, 9 months ago (2017-03-03 23:04:34 UTC) #46
boliu
https://codereview.chromium.org/2708613002/diff/160001/ui/android/view_android.cc File ui/android/view_android.cc (right): https://codereview.chromium.org/2708613002/diff/160001/ui/android/view_android.cc#newcode223 ui/android/view_android.cc:223: void ViewAndroid::SetLayout(int x, On 2017/03/03 23:04:34, David Trainor wrote: ...
3 years, 9 months ago (2017-03-03 23:10:27 UTC) #47
Khushal
https://codereview.chromium.org/2708613002/diff/160001/ui/android/view_android.cc File ui/android/view_android.cc (right): https://codereview.chromium.org/2708613002/diff/160001/ui/android/view_android.cc#newcode223 ui/android/view_android.cc:223: void ViewAndroid::SetLayout(int x, On 2017/03/03 19:46:18, boliu wrote: > ...
3 years, 9 months ago (2017-03-03 23:36:08 UTC) #48
Jinsuk Kim
https://codereview.chromium.org/2708613002/diff/160001/ui/android/view_android.cc File ui/android/view_android.cc (right): https://codereview.chromium.org/2708613002/diff/160001/ui/android/view_android.cc#newcode141 ui/android/view_android.cc:141: void ViewAndroid::MoveToTop(ViewAndroid* child) { On 2017/03/03 23:04:34, David Trainor ...
3 years, 9 months ago (2017-03-06 04:07:34 UTC) #49
boliu
replying to old comment https://codereview.chromium.org/2708613002/diff/180001/ui/events/android/motion_event_android.h File ui/events/android/motion_event_android.h (right): https://codereview.chromium.org/2708613002/diff/180001/ui/events/android/motion_event_android.h#newcode66 ui/events/android/motion_event_android.h:66: MotionEventAndroid(const MotionEventAndroid& e, float x, ...
3 years, 9 months ago (2017-03-06 22:08:05 UTC) #51
boliu
another continuation of old comment.. https://codereview.chromium.org/2708613002/diff/220001/ui/android/view_android.cc File ui/android/view_android.cc (right): https://codereview.chromium.org/2708613002/diff/220001/ui/android/view_android.cc#newcode355 ui/android/view_android.cc:355: send_to_view, you don't need ...
3 years, 9 months ago (2017-03-06 22:19:59 UTC) #52
boliu
https://codereview.chromium.org/2708613002/diff/220001/ui/android/event_handler.cc File ui/android/event_handler.cc (right): https://codereview.chromium.org/2708613002/diff/220001/ui/android/event_handler.cc#newcode20 ui/android/event_handler.cc:20: Java_EventHandler_destroy(base::android::AttachCurrentThread(), java_obj_); null check https://codereview.chromium.org/2708613002/diff/220001/ui/android/view_android.h File ui/android/view_android.h (right): https://codereview.chromium.org/2708613002/diff/220001/ui/android/view_android.h#newcode76 ...
3 years, 9 months ago (2017-03-06 22:27:45 UTC) #53
Khushal
https://codereview.chromium.org/2708613002/diff/180001/content/browser/web_contents/web_contents_view_android.cc File content/browser/web_contents/web_contents_view_android.cc (right): https://codereview.chromium.org/2708613002/diff/180001/content/browser/web_contents/web_contents_view_android.cc#newcode403 content/browser/web_contents/web_contents_view_android.cc:403: return false; // let the children handle the actual ...
3 years, 9 months ago (2017-03-07 04:17:08 UTC) #54
Jinsuk Kim
https://codereview.chromium.org/2708613002/diff/180001/ui/android/view_android.cc File ui/android/view_android.cc (right): https://codereview.chromium.org/2708613002/diff/180001/ui/android/view_android.cc#newcode176 ui/android/view_android.cc:176: if (child->ChildrenHaveEventHandler(child)) On 2017/03/07 04:17:07, Khushal wrote: > On ...
3 years, 9 months ago (2017-03-07 05:02:24 UTC) #56
boliu
https://codereview.chromium.org/2708613002/diff/220001/ui/android/view_android.cc File ui/android/view_android.cc (right): https://codereview.chromium.org/2708613002/diff/220001/ui/android/view_android.cc#newcode355 ui/android/view_android.cc:355: send_to_view, On 2017/03/07 05:02:23, Jinsuk Kim wrote: > On ...
3 years, 9 months ago (2017-03-07 05:08:49 UTC) #57
Khushal
https://codereview.chromium.org/2708613002/diff/180001/ui/android/view_android.cc File ui/android/view_android.cc (right): https://codereview.chromium.org/2708613002/diff/180001/ui/android/view_android.cc#newcode176 ui/android/view_android.cc:176: if (child->ChildrenHaveEventHandler(child)) On 2017/03/07 05:02:23, Jinsuk Kim wrote: > ...
3 years, 9 months ago (2017-03-07 06:32:05 UTC) #58
Khushal
https://codereview.chromium.org/2708613002/diff/180001/ui/android/view_android.cc File ui/android/view_android.cc (right): https://codereview.chromium.org/2708613002/diff/180001/ui/android/view_android.cc#newcode176 ui/android/view_android.cc:176: if (child->ChildrenHaveEventHandler(child)) On 2017/03/07 06:32:05, Khushal wrote: > On ...
3 years, 9 months ago (2017-03-07 06:43:14 UTC) #59
Jinsuk Kim
https://codereview.chromium.org/2708613002/diff/180001/ui/android/view_android.cc File ui/android/view_android.cc (right): https://codereview.chromium.org/2708613002/diff/180001/ui/android/view_android.cc#newcode176 ui/android/view_android.cc:176: if (child->ChildrenHaveEventHandler(child)) On 2017/03/07 06:43:13, Khushal wrote: > On ...
3 years, 9 months ago (2017-03-08 02:16:16 UTC) #60
boliu
lgtm /w a few nits https://codereview.chromium.org/2708613002/diff/280001/ui/android/view_android.h File ui/android/view_android.h (right): https://codereview.chromium.org/2708613002/diff/280001/ui/android/view_android.h#newcode166 ui/android/view_android.h:166: bool HitTest(const base::Callback< nit: ...
3 years, 9 months ago (2017-03-08 02:23:44 UTC) #61
Jinsuk Kim
https://codereview.chromium.org/2708613002/diff/280001/ui/android/view_android.h File ui/android/view_android.h (right): https://codereview.chromium.org/2708613002/diff/280001/ui/android/view_android.h#newcode166 ui/android/view_android.h:166: bool HitTest(const base::Callback< On 2017/03/08 02:23:43, boliu wrote: > ...
3 years, 9 months ago (2017-03-08 04:29:40 UTC) #62
Jinsuk Kim
dtrainor@ Could you give owner's seal on chrome/android?
3 years, 9 months ago (2017-03-08 05:01:17 UTC) #63
Jinsuk Kim
aelias@ Could you review the changes in ui/events/android? I need your approval.
3 years, 9 months ago (2017-03-08 22:16:41 UTC) #64
aelias_OOO_until_Jul13
ui/events/android lgtm https://codereview.chromium.org/2708613002/diff/300001/ui/events/android/motion_event_android.cc File ui/events/android/motion_event_android.cc (right): https://codereview.chromium.org/2708613002/diff/300001/ui/events/android/motion_event_android.cc#newcode428 ui/events/android/motion_event_android.cc:428: MotionEventAndroid::CachedPointer MotionEventAndroid::FromCachedPointer( nit: clearer name would be ...
3 years, 9 months ago (2017-03-08 22:23:45 UTC) #65
David Trainor- moved to gerrit
chrome/android lgtm!
3 years, 9 months ago (2017-03-09 00:24:11 UTC) #66
Khushal
lgtm
3 years, 9 months ago (2017-03-09 00:28:03 UTC) #67
Jinsuk Kim
Thanks everyone for helpful comments. https://codereview.chromium.org/2708613002/diff/300001/ui/events/android/motion_event_android.cc File ui/events/android/motion_event_android.cc (right): https://codereview.chromium.org/2708613002/diff/300001/ui/events/android/motion_event_android.cc#newcode428 ui/events/android/motion_event_android.cc:428: MotionEventAndroid::CachedPointer MotionEventAndroid::FromCachedPointer( On 2017/03/08 ...
3 years, 9 months ago (2017-03-09 00:42:40 UTC) #69
Jinsuk Kim
Build on bots failed with following error: /b/c/b/android_n5x_swarming_rel/src/third_party/android_tools/ndk/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64/bin/../lib/gcc/aarch64-linux-android/4.9.x/../../../../aarch64-linux-android/bin/ld.gold: error: obj/ui/android/android/event_handler.o: multiple definition of 'ui::EventHandler::~EventHandler()' /b/c/b/android_n5x_swarming_rel/src/third_party/android_tools/ndk/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64/bin/../lib/gcc/aarch64-linux-android/4.9.x/../../../../aarch64-linux-android/bin/ld.gold: ...
3 years, 9 months ago (2017-03-09 07:00:03 UTC) #82
Jinsuk Kim
> Local builds are okay though (either with clang/gcc). Renamed EventHandler to > EventForwarder to ...
3 years, 9 months ago (2017-03-09 07:39:04 UTC) #83
boliu
On 2017/03/09 07:39:04, Jinsuk Kim wrote: > > Local builds are okay though (either with ...
3 years, 9 months ago (2017-03-09 07:40:08 UTC) #84
Jinsuk Kim
avi@: Would you review ui/android/DEPS? It's got a new path in the dependency I need ...
3 years, 9 months ago (2017-03-09 12:37:31 UTC) #86
Avi (use Gerrit)
lgtm
3 years, 9 months ago (2017-03-09 15:14:40 UTC) #87
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2708613002/400001
3 years, 9 months ago (2017-03-09 23:14:04 UTC) #90
commit-bot: I haz the power
3 years, 9 months ago (2017-03-10 00:06:39 UTC) #93
Message was sent while issue was closed.
Committed patchset #15 (id:400001) as
https://chromium.googlesource.com/chromium/src/+/5c3a120fa6ff650943131fd0a288...

Powered by Google App Engine
This is Rietveld 408576698