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

Issue 817603002: cc: Make scheduling be driven by vsync for android webview. (Closed)

Created:
6 years ago by sunnyps
Modified:
5 years, 8 months ago
CC:
chromium-reviews, jam, cc-bugs_chromium.org, scheduler-bugs_chromium.org, android-webview-reviews_chromium.org, darin-cc_chromium.org, mithro-old
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

cc: Make scheduling be driven by vsync for android webview. This CL makes android webview use the similar mechanisms for scheduling as other platforms instead of using special polling code in the scheduler. Design Doc: https://docs.google.com/a/chromium.org/document/d/1w5UiuA2uZcAiU9-1Y23bxXaStUThkAK8wHI4ULqho2Y/edit# BUG=439275 Committed: https://crrev.com/bf27da634790bb6eecf4b89f278cfd55c5e5d1f3 Cr-Commit-Position: refs/heads/master@{#323361} Committed: https://crrev.com/eab5ac980c7b7a5781dc18a1217911eb362698f0 Cr-Commit-Position: refs/heads/master@{#323553}

Patch Set 1 #

Total comments: 10

Patch Set 2 : Get android_webview_unittests_apk to build. #

Patch Set 3 : Get android_webview_unittests to pass. #

Patch Set 4 : Make the test shell work without crashing #

Patch Set 5 : Fix actions being performed twice per frame #

Patch Set 6 : Add scheduler unittests #

Patch Set 7 : Restore fallback tick + Use RWHVA for vsync #

Patch Set 8 : Rebase #

Patch Set 9 : Fix misc bugs introduced in last two patches #

Total comments: 4

Patch Set 10 : Fix vsyncs for static content #

Patch Set 11 : Fix regression caused by last patch on dynamic pages #

Total comments: 8

Patch Set 12 : Remove DCHECK left in by accident #

Patch Set 13 : Remove another bad DCHECK #

Patch Set 14 : Update with boliu's changes from crrev.com/914103004 #

Patch Set 15 : Fix issue with onDraw after resume from background #

Patch Set 16 : Remove unnecessary fallback tick code #

Patch Set 17 : Fix newsstand issue #

Patch Set 18 : Rebase #

Patch Set 19 : Rebase and fix all known issues. #

Patch Set 20 : Rebase. #

Patch Set 21 : Small fix after rebase. #

Total comments: 12

Patch Set 22 : Rebase. #

Patch Set 23 : Address boliu's comments. #

Total comments: 16

Patch Set 24 : Address mithro's comments. #

Patch Set 25 : Rebase #

Total comments: 31

Patch Set 26 : Rebase #

Patch Set 27 : Address comments. #

Patch Set 28 : Address comments #

Patch Set 29 : Rebase. #

Patch Set 30 : Rebase. #

Patch Set 31 : Rebase. #

Patch Set 32 : Address comments. #

Patch Set 33 : Do not reset active_tree_needs_first_draw_ #

Total comments: 11

Patch Set 34 : Rebase. #

Patch Set 35 : Address comments. #

Patch Set 36 : Rebase. #

Patch Set 37 : Fix broken tests. #

Patch Set 38 : Fix uninitialized variable. #

Patch Set 39 : Disable test as suggested by boliu #

Patch Set 40 : Rebase. #

Patch Set 41 : Fix rebase compile errors. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+657 lines, -445 lines) Patch
M android_webview/browser/browser_view_renderer.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 4 chunks +8 lines, -14 lines 0 comments Download
M android_webview/browser/browser_view_renderer.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 16 chunks +44 lines, -74 lines 0 comments Download
M android_webview/browser/browser_view_renderer_client.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +2 lines, -0 lines 0 comments Download
M android_webview/browser/browser_view_renderer_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 7 chunks +14 lines, -27 lines 0 comments Download
M android_webview/javatests/src/org/chromium/android_webview/test/VisualStateTest.java View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 2 chunks +5 lines, -0 lines 0 comments Download
M cc/output/begin_frame_args.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1 chunk +0 lines, -1 line 0 comments Download
M cc/output/begin_frame_args.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1 chunk +0 lines, -2 lines 0 comments Download
M cc/output/output_surface.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +6 lines, -0 lines 0 comments Download
M cc/output/output_surface_client.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1 chunk +2 lines, -0 lines 0 comments Download
M cc/scheduler/scheduler.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 5 chunks +8 lines, -4 lines 0 comments Download
M cc/scheduler/scheduler.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 18 chunks +80 lines, -83 lines 0 comments Download
M cc/scheduler/scheduler_state_machine.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 10 chunks +18 lines, -25 lines 0 comments Download
M cc/scheduler/scheduler_state_machine.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 22 chunks +135 lines, -118 lines 0 comments Download
M cc/scheduler/scheduler_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 5 chunks +153 lines, -13 lines 0 comments Download
M cc/surfaces/display.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 1 chunk +1 line, -0 lines 0 comments Download
M cc/surfaces/display.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 1 chunk +4 lines, -0 lines 0 comments Download
M cc/test/fake_layer_tree_host_impl_client.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1 chunk +1 line, -0 lines 0 comments Download
M cc/test/fake_output_surface.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 1 chunk +1 line, -0 lines 0 comments Download
M cc/test/fake_output_surface_client.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1 chunk +1 line, -0 lines 0 comments Download
M cc/test/layer_tree_test.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 1 chunk +1 line, -0 lines 0 comments Download
M cc/test/layer_tree_test.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 1 chunk +5 lines, -0 lines 0 comments Download
M cc/trees/layer_tree_host_impl.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 2 chunks +4 lines, -0 lines 0 comments Download
M cc/trees/layer_tree_host_impl.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 1 chunk +4 lines, -0 lines 0 comments Download
M cc/trees/layer_tree_host_impl_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 1 chunk +1 line, -0 lines 0 comments Download
M cc/trees/layer_tree_host_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 1 chunk +16 lines, -0 lines 0 comments Download
M cc/trees/single_thread_proxy.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 2 chunks +3 lines, -0 lines 0 comments Download
M cc/trees/single_thread_proxy.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 3 chunks +9 lines, -1 line 0 comments Download
M cc/trees/thread_proxy.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 2 chunks +2 lines, -0 lines 0 comments Download
M cc/trees/thread_proxy.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 2 chunks +11 lines, -0 lines 0 comments Download
M content/browser/android/in_process/synchronous_compositor_external_begin_frame_source.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 1 chunk +1 line, -2 lines 0 comments Download
M content/browser/android/in_process/synchronous_compositor_external_begin_frame_source.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 2 chunks +4 lines, -6 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 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 5 chunks +12 lines, -3 lines 0 comments Download
M content/browser/android/in_process/synchronous_compositor_impl.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 8 chunks +41 lines, -28 lines 0 comments Download
M content/browser/android/in_process/synchronous_compositor_output_surface.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 4 chunks +7 lines, -7 lines 0 comments Download
M content/browser/android/in_process/synchronous_compositor_output_surface.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 9 chunks +15 lines, -13 lines 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 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 4 chunks +31 lines, -20 lines 0 comments Download
M content/public/browser/android/synchronous_compositor.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 1 chunk +5 lines, -0 lines 0 comments Download
M content/public/browser/android/synchronous_compositor_client.h View 1 2 3 4 5 6 1 chunk +1 line, -4 lines 0 comments Download
M content/public/test/test_synchronous_compositor_android.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 1 chunk +1 line, -0 lines 0 comments Download

Messages

Total messages: 72 (25 generated)
brianderson
https://codereview.chromium.org/817603002/diff/1/cc/scheduler/scheduler.cc File cc/scheduler/scheduler.cc (right): https://codereview.chromium.org/817603002/diff/1/cc/scheduler/scheduler.cc#newcode347 cc/scheduler/scheduler.cc:347: // drawing a frame, however it's possible that the ...
6 years ago (2014-12-20 00:34:14 UTC) #2
sunnyps
https://codereview.chromium.org/817603002/diff/1/cc/scheduler/scheduler.cc File cc/scheduler/scheduler.cc (right): https://codereview.chromium.org/817603002/diff/1/cc/scheduler/scheduler.cc#newcode347 cc/scheduler/scheduler.cc:347: // drawing a frame, however it's possible that the ...
6 years ago (2014-12-20 00:39:30 UTC) #3
boliu
some scattered comments in aw and content Overall very exciting :D SetIsActive addressed a lot ...
5 years, 10 months ago (2015-02-11 02:28:15 UTC) #4
hush (inactive)
https://codereview.chromium.org/817603002/diff/200001/content/public/browser/android/synchronous_compositor.h File content/public/browser/android/synchronous_compositor.h (right): https://codereview.chromium.org/817603002/diff/200001/content/public/browser/android/synchronous_compositor.h#newcode92 content/public/browser/android/synchronous_compositor.h:92: // compositor won't ask for vsyncs when it's active. ...
5 years, 10 months ago (2015-02-11 20:43:40 UTC) #6
sunnyps
An update: I've discovered a few problems in the scheduler with respect to throttling based ...
5 years, 10 months ago (2015-02-20 04:49:42 UTC) #7
mithro-old
5 years, 10 months ago (2015-02-27 02:15:32 UTC) #9
boliu
Looked over android_webview and content and left some comments And house-keeping: android_webview_unittests_apk doesn't build also ...
5 years, 9 months ago (2015-03-20 18:59:06 UTC) #10
sunnyps
Addressed all issues. PTAL. NOTE: I found that a DCHECK in InputHandlerProxy fails on flinging ...
5 years, 9 months ago (2015-03-20 22:48:40 UTC) #11
mithro-old
Hi Sunny, You know how webview is suppose to operate better than I do, so ...
5 years, 9 months ago (2015-03-23 12:47:10 UTC) #12
sunnyps
Addressed mithro's comments. https://codereview.chromium.org/817603002/diff/440001/cc/scheduler/scheduler.cc File cc/scheduler/scheduler.cc (right): https://codereview.chromium.org/817603002/diff/440001/cc/scheduler/scheduler.cc#newcode328 cc/scheduler/scheduler.cc:328: // crbug.com/317430 for an example of ...
5 years, 9 months ago (2015-03-23 22:53:19 UTC) #13
mithro-old
Hi Sunny, Did you see the suggestions in the top section of the review? BTW ...
5 years, 9 months ago (2015-03-24 05:43:45 UTC) #14
sunnyps
On 2015/03/23 12:47:10, mithro wrote: > Hi Sunny, > > You know how webview is ...
5 years, 9 months ago (2015-03-24 05:57:51 UTC) #15
mithro-old
On 24 March 2015 at 16:57, <sunnyps@chromium.org> wrote: > On 2015/03/23 12:47:10, mithro wrote: > ...
5 years, 9 months ago (2015-03-24 06:14:15 UTC) #16
sunnyps
On Mon, Mar 23, 2015 at 11:13 PM, Tim Ansell <mithro@mithis.com> wrote: > On 24 ...
5 years, 9 months ago (2015-03-24 06:25:30 UTC) #17
brianderson
Regarding the TODO's for renaming: is that mostly to keep this patch smaller? Should the ...
5 years, 9 months ago (2015-03-25 23:10:38 UTC) #18
sunnyps
Addressed comments. PTAL. https://codereview.chromium.org/817603002/diff/480001/cc/output/begin_frame_args.h File cc/output/begin_frame_args.h (left): https://codereview.chromium.org/817603002/diff/480001/cc/output/begin_frame_args.h#oldcode43 cc/output/begin_frame_args.h:43: SYNCHRONOUS, On 2015/03/25 23:10:37, brianderson wrote: ...
5 years, 9 months ago (2015-03-27 00:52:49 UTC) #19
brianderson
https://codereview.chromium.org/817603002/diff/480001/cc/scheduler/scheduler_state_machine.cc File cc/scheduler/scheduler_state_machine.cc (right): https://codereview.chromium.org/817603002/diff/480001/cc/scheduler/scheduler_state_machine.cc#newcode490 cc/scheduler/scheduler_state_machine.cc:490: return needs_redraw_ || needs_prepare_tiles_; On 2015/03/27 00:52:48, sunnyps wrote: ...
5 years, 9 months ago (2015-03-27 21:24:24 UTC) #20
sunnyps
Addressed comments. PTAL. https://codereview.chromium.org/817603002/diff/480001/cc/scheduler/scheduler_state_machine.cc File cc/scheduler/scheduler_state_machine.cc (right): https://codereview.chromium.org/817603002/diff/480001/cc/scheduler/scheduler_state_machine.cc#newcode490 cc/scheduler/scheduler_state_machine.cc:490: return needs_redraw_ || needs_prepare_tiles_; On 2015/03/27 ...
5 years, 9 months ago (2015-03-27 22:38:25 UTC) #21
sunnyps
brianderson, boliu: PTAL https://codereview.chromium.org/817603002/diff/480001/cc/scheduler/scheduler_state_machine.cc File cc/scheduler/scheduler_state_machine.cc (right): https://codereview.chromium.org/817603002/diff/480001/cc/scheduler/scheduler_state_machine.cc#newcode703 cc/scheduler/scheduler_state_machine.cc:703: active_tree_needs_first_draw_ = false; On 2015/03/27 22:38:24, ...
5 years, 8 months ago (2015-03-30 21:49:18 UTC) #22
boliu
android_webview lgtm in_process/ lgtm too even though I don't own that You'll want jdduke@ and ...
5 years, 8 months ago (2015-03-30 22:23:59 UTC) #23
jdduke (slow)
https://codereview.chromium.org/817603002/diff/640001/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/817603002/diff/640001/content/browser/renderer_host/render_widget_host_view_android.cc#newcode1488 content/browser/renderer_host/render_widget_host_view_android.cc:1488: if (stop_observing_root_window) Bo pointed out that WebView apps might ...
5 years, 8 months ago (2015-03-30 22:30:42 UTC) #25
sunnyps
jdduke, sievers: PTAL at content/ changes. Thanks!
5 years, 8 months ago (2015-03-30 22:35:15 UTC) #28
brianderson
cc lgtm https://codereview.chromium.org/817603002/diff/640001/cc/scheduler/scheduler_state_machine.cc File cc/scheduler/scheduler_state_machine.cc (right): https://codereview.chromium.org/817603002/diff/640001/cc/scheduler/scheduler_state_machine.cc#newcode494 cc/scheduler/scheduler_state_machine.cc:494: return needs_redraw_ || needs_prepare_tiles_; Can you add ...
5 years, 8 months ago (2015-04-01 00:23:39 UTC) #29
jdduke (slow)
Looks good though I'm not an owner for any of this code. https://codereview.chromium.org/817603002/diff/640001/content/browser/renderer_host/render_widget_host_view_android.cc File content/browser/renderer_host/render_widget_host_view_android.cc ...
5 years, 8 months ago (2015-04-01 16:01:15 UTC) #30
jdduke (slow)
On 2015/04/01 16:01:15, jdduke wrote: > Looks good though I'm not an owner for any ...
5 years, 8 months ago (2015-04-01 16:23:39 UTC) #31
jdduke (slow)
On 2015/04/01 16:01:15, jdduke wrote: > Looks good though I'm not an owner for any ...
5 years, 8 months ago (2015-04-01 16:23:44 UTC) #32
no sievers
lgtm, nice.
5 years, 8 months ago (2015-04-01 17:37:43 UTC) #33
sunnyps
Addressed remaining comments. Thanks everyone! https://codereview.chromium.org/817603002/diff/200001/content/public/browser/android/synchronous_compositor.h File content/public/browser/android/synchronous_compositor.h (right): https://codereview.chromium.org/817603002/diff/200001/content/public/browser/android/synchronous_compositor.h#newcode92 content/public/browser/android/synchronous_compositor.h:92: // compositor won't ask ...
5 years, 8 months ago (2015-04-01 19:53:02 UTC) #34
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/817603002/680001
5 years, 8 months ago (2015-04-01 19:54:36 UTC) #37
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/817603002/680001
5 years, 8 months ago (2015-04-01 21:02:38 UTC) #40
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/817603002/720001
5 years, 8 months ago (2015-04-01 22:03:49 UTC) #43
commit-bot: I haz the power
Committed patchset #37 (id:720001)
5 years, 8 months ago (2015-04-01 23:08:05 UTC) #44
commit-bot: I haz the power
Patchset 37 (id:??) landed as https://crrev.com/bf27da634790bb6eecf4b89f278cfd55c5e5d1f3 Cr-Commit-Position: refs/heads/master@{#323361}
5 years, 8 months ago (2015-04-01 23:08:53 UTC) #45
sunnyps
A revert of this CL (patchset #37 id:720001) has been created in https://codereview.chromium.org/1052103002/ by sunnyps@chromium.org. ...
5 years, 8 months ago (2015-04-02 00:42:00 UTC) #46
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/817603002/740001
5 years, 8 months ago (2015-04-02 01:32:34 UTC) #49
commit-bot: I haz the power
Committed patchset #38 (id:740001)
5 years, 8 months ago (2015-04-02 02:32:11 UTC) #50
sunnyps
A revert of this CL (patchset #38 id:740001) has been created in https://codereview.chromium.org/1055743002/ by sunnyps@chromium.org. ...
5 years, 8 months ago (2015-04-02 03:03:21 UTC) #51
boliu
VisualStateTest.java lgtm
5 years, 8 months ago (2015-04-02 03:32:56 UTC) #52
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/817603002/760001
5 years, 8 months ago (2015-04-02 03:33:51 UTC) #55
commit-bot: I haz the power
Failed to apply patch for cc/scheduler/scheduler_state_machine.cc: While running git apply --index -3 -p1; error: patch ...
5 years, 8 months ago (2015-04-02 06:23:56 UTC) #57
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/817603002/780001
5 years, 8 months ago (2015-04-02 16:30:48 UTC) #61
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/817603002/800001
5 years, 8 months ago (2015-04-02 16:52:29 UTC) #67
commit-bot: I haz the power
Committed patchset #41 (id:800001)
5 years, 8 months ago (2015-04-02 20:26:26 UTC) #68
Justin Novosad
A revert of this CL (patchset #41 id:800001) has been created in https://codereview.chromium.org/1051273003/ by junov@chromium.org. ...
5 years, 8 months ago (2015-04-02 21:17:35 UTC) #69
sunnyps
On 2015/04/02 21:17:35, junov wrote: > A revert of this CL (patchset #41 id:800001) has ...
5 years, 8 months ago (2015-04-02 21:24:09 UTC) #70
commit-bot: I haz the power
Patchset 41 (id:??) landed as https://crrev.com/5333e1468ef3af0099769d4ec6a4c74e9e603766 Cr-Commit-Position: refs/heads/master@{#323410}
5 years, 8 months ago (2015-04-03 20:21:52 UTC) #71
commit-bot: I haz the power
5 years, 8 months ago (2015-04-03 20:28:39 UTC) #72
Message was sent while issue was closed.
Patchset 41 (id:??) landed as
https://crrev.com/eab5ac980c7b7a5781dc18a1217911eb362698f0
Cr-Commit-Position: refs/heads/master@{#323553}

Powered by Google App Engine
This is Rietveld 408576698