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

Issue 1415953004: Move content/renderer input handling for web input events to ui (Closed)

Created:
5 years, 1 month ago by Khushal
Modified:
5 years, 1 month ago
CC:
blundell+watchlist_chromium.org, chromium-reviews, darin-cc_chromium.org, droger+watchlist_chromium.org, Fady Samuel, jam, mkwst+moarreviews-renderer_chromium.org, mlamouri+watch-content_chromium.org, sdefresne+watchlist_chromium.org, Wez, Rick Byers
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Move content/renderer input handling for web input events to ui. The InputHandlerProxy in content/renderer implements the logic for sending the intercepted web input events to the compositor. Move this logic to ui to be used by mus/blimp. BUG=550531 Committed: https://crrev.com/3a8d056562f51c44bbbf8a1b7dd670af4d058350 Cr-Commit-Position: refs/heads/master@{#361207}

Patch Set 1 #

Patch Set 2 : Rebase and change component name. #

Patch Set 3 : Rebase. #

Patch Set 4 : Component rename. #

Total comments: 5

Patch Set 5 : Change DEPS. #

Patch Set 6 : Change cc DEPS. #

Patch Set 7 : Move code to ui #

Total comments: 2

Patch Set 8 : Rebase. #

Patch Set 9 : Addressing comments. #

Total comments: 3

Patch Set 10 : OWNERS file edit. #

Patch Set 11 : OWNERS edit. #

Total comments: 6

Patch Set 12 : Rebase. #

Total comments: 2

Patch Set 13 : Addressing comments. #

Total comments: 2

Patch Set 14 : DEPS order fix. #

Patch Set 15 : git status #

Patch Set 16 : Add events_unittests.gyp #

Patch Set 17 : Add ios condition to gyp #

Patch Set 18 : gn change. #

Patch Set 19 : events/blink unittests not on ios. #

Patch Set 20 : remove gyp file cyclic dependency ios #

Patch Set 21 : Update content_browser.gypi #

Patch Set 22 : Rebase. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+453 lines, -5137 lines) Patch
M build/all.gyp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 5 chunks +5 lines, -5 lines 0 comments Download
M build/gn_migration.gypi View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 3 chunks +3 lines, -3 lines 0 comments Download
M chromecast/chromecast_tests.gypi View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 1 chunk +1 line, -1 line 0 comments Download
M content/browser/android/in_process/DEPS View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +1 line, -0 lines 0 comments Download
M content/browser/android/in_process/synchronous_compositor_impl.h View 1 2 3 4 5 6 7 8 9 10 11 12 4 chunks +4 lines, -4 lines 0 comments Download
M content/browser/android/in_process/synchronous_compositor_impl.cc View 1 2 3 4 5 6 1 chunk +1 line, -1 line 0 comments Download
M content/browser/android/in_process/synchronous_compositor_registry_in_proc.h View 1 2 3 4 5 6 4 chunks +5 lines, -5 lines 0 comments Download
M content/browser/android/in_process/synchronous_compositor_registry_in_proc.cc View 1 2 3 4 5 6 1 chunk +1 line, -1 line 0 comments Download
M content/browser/android/in_process/synchronous_input_event_filter.h View 1 2 3 4 5 6 2 chunks +6 lines, -1 line 0 comments Download
M content/browser/android/in_process/synchronous_input_event_filter.cc View 1 2 3 4 5 6 2 chunks +2 lines, -1 line 0 comments Download
M content/content_browser.gypi View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 2 chunks +1 line, -1 line 0 comments Download
M content/content_renderer.gypi View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 2 chunks +1 line, -5 lines 0 comments Download
M content/content_tests.gypi View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 2 chunks +1 line, -3 lines 0 comments Download
M content/renderer/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 1 chunk +1 line, -0 lines 0 comments Download
M content/renderer/android/synchronous_compositor_filter.h View 1 2 3 4 5 6 7 8 9 10 11 12 3 chunks +7 lines, -2 lines 0 comments Download
M content/renderer/android/synchronous_compositor_filter.cc View 1 2 3 4 5 6 7 8 9 10 11 12 2 chunks +2 lines, -1 line 0 comments Download
M content/renderer/android/synchronous_compositor_proxy.h View 1 2 3 4 5 6 7 8 9 10 11 12 4 chunks +5 lines, -5 lines 0 comments Download
M content/renderer/android/synchronous_compositor_proxy.cc View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +1 line, -1 line 0 comments Download
M content/renderer/input/input_event_filter.h View 1 2 3 4 5 6 3 chunks +4 lines, -5 lines 0 comments Download
M content/renderer/input/input_event_filter.cc View 1 2 3 4 5 6 2 chunks +3 lines, -1 line 0 comments Download
M content/renderer/input/input_handler_manager.cc View 1 2 3 4 5 6 7 8 3 chunks +7 lines, -1 line 0 comments Download
M content/renderer/input/input_handler_manager_client.h View 1 2 3 4 5 6 2 chunks +5 lines, -2 lines 0 comments Download
D content/renderer/input/input_handler_proxy.h View 1 chunk +0 lines, -189 lines 0 comments Download
D content/renderer/input/input_handler_proxy.cc View 1 chunk +0 lines, -1048 lines 0 comments Download
D content/renderer/input/input_handler_proxy_client.h View 1 chunk +0 lines, -49 lines 0 comments Download
D content/renderer/input/input_handler_proxy_unittest.cc View 1 chunk +0 lines, -2478 lines 0 comments Download
M content/renderer/input/input_handler_wrapper.h View 1 2 3 4 5 6 3 chunks +17 lines, -6 lines 0 comments Download
M content/renderer/input/input_handler_wrapper.cc View 3 chunks +16 lines, -1 line 0 comments Download
D content/renderer/input/input_scroll_elasticity_controller.h View 1 chunk +0 lines, -148 lines 0 comments Download
D content/renderer/input/input_scroll_elasticity_controller.cc View 1 chunk +0 lines, -410 lines 0 comments Download
D content/renderer/input/input_scroll_elasticity_controller_unittest.cc View 1 chunk +0 lines, -387 lines 0 comments Download
D content/renderer/input/synchronous_input_handler_proxy.h View 1 chunk +0 lines, -73 lines 0 comments Download
M tools/copyright_scanner/third_party_files_whitelist.txt View 1 2 3 4 5 6 2 chunks +3 lines, -3 lines 0 comments Download
M ui/events/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 1 chunk +6 lines, -1 line 0 comments Download
M ui/events/blink/BUILD.gn View 1 2 3 4 5 6 18 1 chunk +7 lines, -0 lines 0 comments Download
M ui/events/blink/DEPS View 1 2 3 4 5 6 1 chunk +13 lines, -0 lines 0 comments Download
A + ui/events/blink/OWNERS View 1 2 3 4 5 6 7 8 9 10 0 chunks +-1 lines, --1 lines 0 comments Download
A ui/events/blink/events_blink.gyp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 17 18 19 1 chunk +34 lines, -0 lines 0 comments Download
A + ui/events/blink/input_handler_proxy.h View 1 2 3 4 5 6 4 chunks +18 lines, -13 lines 0 comments Download
A + ui/events/blink/input_handler_proxy.cc View 1 2 3 4 5 6 7 chunks +12 lines, -23 lines 0 comments Download
A + ui/events/blink/input_handler_proxy_client.h View 1 2 3 4 5 6 4 chunks +10 lines, -8 lines 0 comments Download
A + ui/events/blink/input_handler_proxy_unittest.cc View 1 2 3 4 5 6 16 chunks +34 lines, -44 lines 0 comments Download
A + ui/events/blink/input_scroll_elasticity_controller.h View 1 2 3 4 5 6 3 chunks +6 lines, -7 lines 0 comments Download
A + ui/events/blink/input_scroll_elasticity_controller.cc View 1 2 3 4 5 6 3 chunks +3 lines, -3 lines 0 comments Download
A + ui/events/blink/input_scroll_elasticity_controller_unittest.cc View 1 2 3 4 5 6 2 chunks +4 lines, -3 lines 0 comments Download
A + ui/events/blink/synchronous_input_handler_proxy.h View 1 2 3 4 5 6 3 chunks +7 lines, -8 lines 0 comments Download
M ui/events/events.gyp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 17 18 19 3 chunks +1 line, -187 lines 0 comments Download
A ui/events/events_unittests.gyp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +196 lines, -0 lines 0 comments Download

Messages

Total messages: 87 (22 generated)
Khushal
5 years, 1 month ago (2015-11-04 00:48:39 UTC) #3
blundell
drive-by: input is a really generic name for a component. Could we go with something ...
5 years, 1 month ago (2015-11-04 09:41:18 UTC) #5
Khushal
On 2015/11/04 09:41:18, blundell wrote: > drive-by: input is a really generic name for a ...
5 years, 1 month ago (2015-11-04 17:53:40 UTC) #7
tdresser
On 2015/11/04 17:53:40, Khushal wrote: > On 2015/11/04 09:41:18, blundell wrote: > > drive-by: input ...
5 years, 1 month ago (2015-11-04 19:57:12 UTC) #9
Khushal
On 2015/11/04 19:57:12, tdresser wrote: > On 2015/11/04 17:53:40, Khushal wrote: > > On 2015/11/04 ...
5 years, 1 month ago (2015-11-04 21:06:39 UTC) #10
Wez
If it's about handling of input by the compositor then why not compositor_input or cc_input? ...
5 years, 1 month ago (2015-11-04 21:20:56 UTC) #11
Khushal
On 2015/11/04 21:20:56, Wez wrote: > If it's about handling of input by the compositor ...
5 years, 1 month ago (2015-11-04 21:33:54 UTC) #12
tdresser
On 2015/11/04 21:33:54, Khushal wrote: > On 2015/11/04 21:20:56, Wez wrote: > > If it's ...
5 years, 1 month ago (2015-11-04 21:36:00 UTC) #13
piman
On Wed, Nov 4, 2015 at 1:36 PM, <tdresser@chromium.org> wrote: > On 2015/11/04 21:33:54, Khushal ...
5 years, 1 month ago (2015-11-04 23:04:47 UTC) #14
piman
On Wed, Nov 4, 2015 at 3:04 PM, Antoine Labour <piman@chromium.org> wrote: > > > ...
5 years, 1 month ago (2015-11-04 23:08:20 UTC) #15
Wez
Or input_gestures or input_rendering? On 4 November 2015 at 15:07, Antoine Labour <piman@chromium.org> wrote: > ...
5 years, 1 month ago (2015-11-04 23:36:07 UTC) #16
piman
On Wed, Nov 4, 2015 at 3:36 PM, Wez <wez@chromium.org> wrote: > Or input_gestures or ...
5 years, 1 month ago (2015-11-05 00:07:48 UTC) #17
Khushal
On 2015/11/05 00:07:48, piman (slow to review) wrote: > On Wed, Nov 4, 2015 at ...
5 years, 1 month ago (2015-11-05 00:14:53 UTC) #18
blundell
input_gestures sgtm I agree that there are existing bad examples in //components...I try to push ...
5 years, 1 month ago (2015-11-05 09:28:30 UTC) #20
tdresser
Not LGTM. input_gestures is misleading, as "gesture" in our code base refers to a specific ...
5 years, 1 month ago (2015-11-05 13:48:21 UTC) #21
blundell
On 2015/11/05 13:48:21, tdresser wrote: > Not LGTM. > > input_gestures is misleading, as "gesture" ...
5 years, 1 month ago (2015-11-05 13:54:25 UTC) #22
blundell
On 2015/11/05 13:54:25, blundell wrote: > On 2015/11/05 13:48:21, tdresser wrote: > > Not LGTM. ...
5 years, 1 month ago (2015-11-05 13:55:30 UTC) #23
tdresser
On 2015/11/05 13:55:30, blundell wrote: > On 2015/11/05 13:54:25, blundell wrote: > > On 2015/11/05 ...
5 years, 1 month ago (2015-11-05 13:57:29 UTC) #24
Khushal
On 2015/11/05 13:57:29, tdresser wrote: > On 2015/11/05 13:55:30, blundell wrote: > > On 2015/11/05 ...
5 years, 1 month ago (2015-11-05 18:20:25 UTC) #25
tdresser
On 2015/11/05 18:20:25, Khushal wrote: > On 2015/11/05 13:57:29, tdresser wrote: > > On 2015/11/05 ...
5 years, 1 month ago (2015-11-05 18:23:34 UTC) #26
piman
On Thu, Nov 5, 2015 at 10:20 AM, <khushalsagar@chromium.org> wrote: > On 2015/11/05 13:57:29, tdresser ...
5 years, 1 month ago (2015-11-05 19:37:43 UTC) #27
Khushal
Renamed. +dpranke, +sadrul, +danakj for DEPS approval.
5 years, 1 month ago (2015-11-05 22:18:07 UTC) #30
danakj
https://codereview.chromium.org/1415953004/diff/60001/components/web_input/DEPS File components/web_input/DEPS (right): https://codereview.chromium.org/1415953004/diff/60001/components/web_input/DEPS#newcode2 components/web_input/DEPS:2: "+cc", also -cc/blink Or, does this use anything except ...
5 years, 1 month ago (2015-11-05 22:28:01 UTC) #31
danakj
https://codereview.chromium.org/1415953004/diff/60001/components/web_input/DEPS File components/web_input/DEPS (right): https://codereview.chromium.org/1415953004/diff/60001/components/web_input/DEPS#newcode13 components/web_input/DEPS:13: "+ui/gfx", do you need all gfx? or just geometry?
5 years, 1 month ago (2015-11-05 22:29:16 UTC) #32
Khushal
https://codereview.chromium.org/1415953004/diff/60001/components/web_input/DEPS File components/web_input/DEPS (right): https://codereview.chromium.org/1415953004/diff/60001/components/web_input/DEPS#newcode2 components/web_input/DEPS:2: "+cc", On 2015/11/05 22:28:01, danakj wrote: > also -cc/blink ...
5 years, 1 month ago (2015-11-05 22:49:49 UTC) #33
Dirk Pranke
On 2015/11/05 22:18:07, Khushal wrote: > Renamed. > +dpranke, +sadrul, +danakj for DEPS approval. I ...
5 years, 1 month ago (2015-11-05 22:51:12 UTC) #34
Khushal
On 2015/11/05 22:51:12, Dirk Pranke wrote: > On 2015/11/05 22:18:07, Khushal wrote: > > Renamed. ...
5 years, 1 month ago (2015-11-05 22:55:56 UTC) #35
Dirk Pranke
On 2015/11/05 22:55:56, Khushal wrote: > Oh. I needed a review for the webkit includes. ...
5 years, 1 month ago (2015-11-05 23:06:12 UTC) #36
danakj
https://codereview.chromium.org/1415953004/diff/60001/components/web_input/DEPS File components/web_input/DEPS (right): https://codereview.chromium.org/1415953004/diff/60001/components/web_input/DEPS#newcode2 components/web_input/DEPS:2: "+cc", On 2015/11/05 22:49:49, Khushal wrote: > On 2015/11/05 ...
5 years, 1 month ago (2015-11-05 23:07:54 UTC) #37
Khushal
On 2015/11/05 23:06:12, Dirk Pranke wrote: > On 2015/11/05 22:55:56, Khushal wrote: > > Oh. ...
5 years, 1 month ago (2015-11-05 23:13:38 UTC) #38
Khushal
On 2015/11/05 23:07:54, danakj wrote: > https://codereview.chromium.org/1415953004/diff/60001/components/web_input/DEPS > File components/web_input/DEPS (right): > > https://codereview.chromium.org/1415953004/diff/60001/components/web_input/DEPS#newcode2 > ...
5 years, 1 month ago (2015-11-05 23:14:55 UTC) #40
danakj
DEPS LGTM
5 years, 1 month ago (2015-11-05 23:22:47 UTC) #41
blundell
Thanks for the naming discussion! I greatly prefer web_input/ to input/ as a name for ...
5 years, 1 month ago (2015-11-06 08:20:17 UTC) #42
blundell
On 2015/11/06 08:20:17, blundell wrote: > Thanks for the naming discussion! I greatly prefer web_input/ ...
5 years, 1 month ago (2015-11-06 08:20:47 UTC) #43
Khushal
On 2015/11/06 08:20:47, blundell wrote: > On 2015/11/06 08:20:17, blundell wrote: > > Thanks for ...
5 years, 1 month ago (2015-11-10 02:14:03 UTC) #45
aelias_OOO_until_Jul13
lgtm
5 years, 1 month ago (2015-11-10 20:23:51 UTC) #46
tdresser
LGTM, assuming that we didn't lose any tracing coverage. https://codereview.chromium.org/1415953004/diff/120001/ui/events/blink/input_handler_proxy.cc File ui/events/blink/input_handler_proxy.cc (left): https://codereview.chromium.org/1415953004/diff/120001/ui/events/blink/input_handler_proxy.cc#oldcode245 ui/events/blink/input_handler_proxy.cc:245: ...
5 years, 1 month ago (2015-11-11 05:58:24 UTC) #47
Khushal
https://codereview.chromium.org/1415953004/diff/120001/ui/events/blink/input_handler_proxy.cc File ui/events/blink/input_handler_proxy.cc (left): https://codereview.chromium.org/1415953004/diff/120001/ui/events/blink/input_handler_proxy.cc#oldcode245 ui/events/blink/input_handler_proxy.cc:245: "type", WebInputEventTraits::GetName(event.type)); On 2015/11/11 05:58:24, tdresser wrote: > Why ...
5 years, 1 month ago (2015-11-11 06:18:26 UTC) #48
Khushal
Also, would it be a good idea to add an OWNERS file with the owners ...
5 years, 1 month ago (2015-11-11 06:26:51 UTC) #49
tdresser
On 2015/11/11 06:26:51, Khushal wrote: > Also, would it be a good idea to add ...
5 years, 1 month ago (2015-11-11 16:14:14 UTC) #50
Khushal
On 2015/11/11 16:14:14, tdresser wrote: > On 2015/11/11 06:26:51, Khushal wrote: > > Also, would ...
5 years, 1 month ago (2015-11-11 19:38:40 UTC) #51
Khushal
On 2015/11/11 19:38:40, Khushal wrote: > On 2015/11/11 16:14:14, tdresser wrote: > > On 2015/11/11 ...
5 years, 1 month ago (2015-11-16 18:29:24 UTC) #52
danakj
https://codereview.chromium.org/1415953004/diff/160001/ui/events/blink/OWNERS File ui/events/blink/OWNERS (right): https://codereview.chromium.org/1415953004/diff/160001/ui/events/blink/OWNERS#newcode1 ui/events/blink/OWNERS:1: per-file input*=aelias@chromium.org who's the owner for ui/events/blink/synchronous_input_handler_proxy.h then?
5 years, 1 month ago (2015-11-16 18:39:24 UTC) #53
Khushal
https://codereview.chromium.org/1415953004/diff/160001/ui/events/blink/OWNERS File ui/events/blink/OWNERS (right): https://codereview.chromium.org/1415953004/diff/160001/ui/events/blink/OWNERS#newcode1 ui/events/blink/OWNERS:1: per-file input*=aelias@chromium.org On 2015/11/16 18:39:24, danakj (behind on reviews) ...
5 years, 1 month ago (2015-11-16 18:45:47 UTC) #54
sadrul
lgtm https://codereview.chromium.org/1415953004/diff/160001/ui/events/blink/OWNERS File ui/events/blink/OWNERS (right): https://codereview.chromium.org/1415953004/diff/160001/ui/events/blink/OWNERS#newcode2 ui/events/blink/OWNERS:2: per-file input*=tdresser@chromium.org The only other file in events/blink ...
5 years, 1 month ago (2015-11-16 18:48:32 UTC) #55
Khushal
On 2015/11/16 18:48:32, sadrul wrote: > lgtm > > https://codereview.chromium.org/1415953004/diff/160001/ui/events/blink/OWNERS > File ui/events/blink/OWNERS (right): > ...
5 years, 1 month ago (2015-11-16 19:02:52 UTC) #56
boliu
https://codereview.chromium.org/1415953004/diff/200001/content/browser/android/in_process/synchronous_compositor_impl.h File content/browser/android/in_process/synchronous_compositor_impl.h (right): https://codereview.chromium.org/1415953004/diff/200001/content/browser/android/in_process/synchronous_compositor_impl.h#newcode23 content/browser/android/in_process/synchronous_compositor_impl.h:23: namespace ui { Not needed https://codereview.chromium.org/1415953004/diff/200001/content/renderer/android/synchronous_compositor_filter.h File content/renderer/android/synchronous_compositor_filter.h (right): ...
5 years, 1 month ago (2015-11-16 19:12:12 UTC) #57
Rick Byers
ui/events/blink/DEPS LGTM (usage of blink types)
5 years, 1 month ago (2015-11-16 20:38:29 UTC) #60
boliu
https://codereview.chromium.org/1415953004/diff/220001/content/browser/android/in_process/DEPS File content/browser/android/in_process/DEPS (right): https://codereview.chromium.org/1415953004/diff/220001/content/browser/android/in_process/DEPS#newcode4 content/browser/android/in_process/DEPS:4: "+ui/events/blink", One more. Add only synchronous_input_handler_proxy.h
5 years, 1 month ago (2015-11-16 20:54:38 UTC) #61
Khushal
https://codereview.chromium.org/1415953004/diff/200001/content/browser/android/in_process/synchronous_compositor_impl.h File content/browser/android/in_process/synchronous_compositor_impl.h (right): https://codereview.chromium.org/1415953004/diff/200001/content/browser/android/in_process/synchronous_compositor_impl.h#newcode23 content/browser/android/in_process/synchronous_compositor_impl.h:23: namespace ui { On 2015/11/16 19:12:12, boliu wrote: > ...
5 years, 1 month ago (2015-11-16 21:12:49 UTC) #62
boliu
synchronous_compositor_* lgtm https://codereview.chromium.org/1415953004/diff/240001/content/browser/android/in_process/DEPS File content/browser/android/in_process/DEPS (right): https://codereview.chromium.org/1415953004/diff/240001/content/browser/android/in_process/DEPS#newcode4 content/browser/android/in_process/DEPS:4: "+ui/events/blink/synchronous_input_handler_proxy.h", alphabetical order
5 years, 1 month ago (2015-11-16 21:18:07 UTC) #63
Khushal
Thanks Bo! https://codereview.chromium.org/1415953004/diff/240001/content/browser/android/in_process/DEPS File content/browser/android/in_process/DEPS (right): https://codereview.chromium.org/1415953004/diff/240001/content/browser/android/in_process/DEPS#newcode4 content/browser/android/in_process/DEPS:4: "+ui/events/blink/synchronous_input_handler_proxy.h", On 2015/11/16 21:18:07, boliu wrote: > ...
5 years, 1 month ago (2015-11-16 21:24:24 UTC) #64
piman
lgtm
5 years, 1 month ago (2015-11-16 21:39:44 UTC) #65
Torne
tools/copyright_scanner LGTM
5 years, 1 month ago (2015-11-17 13:28:49 UTC) #66
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1415953004/260001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1415953004/260001
5 years, 1 month ago (2015-11-17 16:13:05 UTC) #69
commit-bot: I haz the power
Try jobs failed on following builders: ios_rel_device_ninja on tryserver.chromium.mac (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.mac/builders/ios_rel_device_ninja/builds/137390)
5 years, 1 month ago (2015-11-17 16:24:01 UTC) #71
Khushal
Had to restructure events.gyp into different files since otherwise it causes a cyclic dependency in ...
5 years, 1 month ago (2015-11-19 01:15:07 UTC) #73
Khushal
+agrieve to take a look at build/ +halliwell for chromecast/
5 years, 1 month ago (2015-11-23 17:29:15 UTC) #75
halliwell
On 2015/11/23 17:29:15, Khushal wrote: > +agrieve to take a look at build/ > +halliwell ...
5 years, 1 month ago (2015-11-23 17:49:02 UTC) #76
agrieve
On 2015/11/23 17:49:02, halliwell wrote: > On 2015/11/23 17:29:15, Khushal wrote: > > +agrieve to ...
5 years, 1 month ago (2015-11-23 18:35:24 UTC) #77
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1415953004/400001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1415953004/400001
5 years, 1 month ago (2015-11-23 20:59:05 UTC) #80
commit-bot: I haz the power
Try jobs failed on following builders: mac_chromium_compile_dbg_ng on tryserver.chromium.mac (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.mac/builders/mac_chromium_compile_dbg_ng/builds/126971) mac_chromium_gn_rel on tryserver.chromium.mac (JOB_FAILED, ...
5 years, 1 month ago (2015-11-23 21:06:53 UTC) #82
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1415953004/420001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1415953004/420001
5 years, 1 month ago (2015-11-23 21:18:41 UTC) #85
commit-bot: I haz the power
Committed patchset #22 (id:420001)
5 years, 1 month ago (2015-11-23 22:50:44 UTC) #86
commit-bot: I haz the power
5 years, 1 month ago (2015-11-23 22:51:51 UTC) #87
Message was sent while issue was closed.
Patchset 22 (id:??) landed as
https://crrev.com/3a8d056562f51c44bbbf8a1b7dd670af4d058350
Cr-Commit-Position: refs/heads/master@{#361207}

Powered by Google App Engine
This is Rietveld 408576698