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

Issue 134623005: Make SingleThreadProxy a SchedulerClient (Closed)

Created:
6 years, 11 months ago by enne (OOO)
Modified:
6 years, 4 months ago
CC:
cc-bugs_chromium.org, ccameron, chromium-reviews, danakj+watch_chromium.org, darin-cc_chromium.org, jam, jbauman+watch_chromium.org, joi+watch-content_chromium.org, kalyank, piman+watch_chromium.org, sievers+watch_chromium.org, no sievers, Mr4D (OOO till 08-26), Ian Vollick
Visibility:
Public.

Description

Make SingleThreadProxy a SchedulerClient All compositors that use SingleThreadProxy are left calling composite synchronously and now pass a flag to indicate that this is their intention. This patch doesn't remove synchronous composite, but now makes it mutually exclusive with scheduling. Only cc unittests are exercising this code at this point, although it also unifies a lot of the code for CompositeImmediately with the scheduled path. BUG=329552, 287250 Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=291451

Patch Set 1 #

Patch Set 2 : Rebase on brianderson's deadline + lost context patch #

Patch Set 3 : rebase #

Patch Set 4 : Fix more unit tests; formatting #

Patch Set 5 : Ready for review #

Patch Set 6 : Removed extra draw results patch #

Patch Set 7 : Remove CompositeImmediately NOTREACHED OOPS #

Patch Set 8 : Rebase #

Patch Set 9 : Fix typo #

Total comments: 42

Patch Set 10 : danakj review #

Patch Set 11 : More danakj review #

Total comments: 9

Patch Set 12 : move member variables #

Patch Set 13 : Rebase #

Patch Set 14 : Rebase #

Patch Set 15 : Rebase #

Patch Set 16 : Fix tests; remove weak_ptr_ #

Total comments: 2

Patch Set 17 : s/window_/compositor_host_/ #

Patch Set 18 : Fix test compositor host compile errors #

Patch Set 19 : Rebase #

Total comments: 3

Patch Set 20 : Make more tests single threaded #

Total comments: 1

Patch Set 21 : impl_task_runner => task_runner #

Total comments: 10

Patch Set 22 : Review cleanup #

Total comments: 24

Patch Set 23 : NOTREACHED #

Patch Set 24 : Rebase #

Patch Set 25 : danakj review #

Patch Set 26 : Defer commits in CompositorImpl too #

Patch Set 27 : Rebase #

Patch Set 28 : Post task for ScheduledActionBeginOutputSurfaceCreation #

Total comments: 4

Patch Set 29 : Rebase #

Patch Set 30 : Android working #

Total comments: 23

Patch Set 31 : Rebase #

Patch Set 32 : danakj review #

Total comments: 10

Patch Set 33 : danakj review #

Total comments: 13

Patch Set 34 : Rebase #

Patch Set 35 : Use current frame ticks #

Patch Set 36 : Rebase #

Patch Set 37 : Set HardwareRenderer to not use the scheduler as well #

Patch Set 38 : Win8 Aura fixes #

Patch Set 39 : DrawWaiter changes #

Patch Set 40 : compilation fixes #

Patch Set 41 : Suppress SetLayerTreeHostClientReady in tests #

Total comments: 2

Patch Set 42 : Update client animations in SingleThreadProxy; test this #

Total comments: 2

Patch Set 43 : Rebase #

Patch Set 44 : Rebase #

Total comments: 1

Patch Set 45 : Fix Blink crashes #

Patch Set 46 : More fixes #

Total comments: 5

Patch Set 47 : Rebase #

Total comments: 5

Patch Set 48 : Synchronous compositeAndReadbackAsync for test reliability #

Total comments: 2

Patch Set 49 : Rebase #

Patch Set 50 : Fix cc_unittests #

Patch Set 51 : Rebase #

Patch Set 52 : Rebase #

Patch Set 53 : Punt on layout tests #

Patch Set 54 : Rebase #

Patch Set 55 : Fix hardware_renderer typo #

Patch Set 56 : Rebase #

Patch Set 57 : Mac browser compositor fixes #

Total comments: 3

Patch Set 58 : Rebase #

Patch Set 59 : Rebase #

Patch Set 60 : Asynchronous BeginMainFrame #

Total comments: 3

Patch Set 61 : Remove unneeded Proxy:: prefix #

Patch Set 62 : Rebase #

Patch Set 63 : Rebase #

Patch Set 64 : Rebase #

Patch Set 65 : Rebase #

Patch Set 66 : Rebase #

Patch Set 67 : Fix cc_perftests; disable Windows DND tests #

Total comments: 2

Patch Set 68 : danakj suggestion: just USE_AURA #

Patch Set 69 : Rebase #

Patch Set 70 : Abort commits properly, handle swap promises, test those #

Total comments: 4

Patch Set 71 : Rebase #

Patch Set 72 : Rename swap promise checker #

Patch Set 73 : Rebase #

Total comments: 2

Patch Set 74 : Rebase #

Patch Set 75 : Just SingleThreadProxy; not ui::Compositor #

Patch Set 76 : Add scoped_abort_remaining_swap_promises.h #

Unified diffs Side-by-side diffs Delta from patch set Stats (+499 lines, -258 lines) Patch
M android_webview/browser/hardware_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 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 1 chunk +0 lines, -2 lines 0 comments Download
M android_webview/browser/hardware_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 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 1 chunk +3 lines, -0 lines 0 comments Download
M cc/BUILD.gn 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 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 1 chunk +1 line, -0 lines 0 comments Download
M cc/cc.gyp 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 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 1 chunk +1 line, -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 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 2 chunks +7 lines, -8 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 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 9 chunks +15 lines, -12 lines 0 comments Download
M cc/test/fake_layer_tree_host_client.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 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 1 chunk +0 lines, -2 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 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 4 chunks +0 lines, -6 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 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 5 chunks +2 lines, -46 lines 0 comments Download
M cc/trees/layer_tree_host.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 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 1 chunk +4 lines, -0 lines 0 comments Download
M cc/trees/layer_tree_host_perftest.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 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 1 chunk +2 lines, -0 lines 0 comments Download
M cc/trees/layer_tree_host_single_thread_client.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 1 chunk +2 lines, -2 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 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 8 chunks +9 lines, -4 lines 0 comments Download
M cc/trees/layer_tree_host_unittest_context.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 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 9 chunks +18 lines, -38 lines 0 comments Download
M cc/trees/layer_tree_host_unittest_no_message_loop.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 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 2 chunks +1 line, -2 lines 0 comments Download
M cc/trees/layer_tree_settings.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 40 41 42 43 44 45 46 47 48 49 50 51 52 53 1 chunk +1 line, -0 lines 0 comments Download
M cc/trees/layer_tree_settings.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 41 42 43 44 45 46 47 48 49 50 51 52 53 1 chunk +1 line, -0 lines 0 comments Download
A cc/trees/scoped_abort_remaining_swap_promises.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 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 74 75 1 chunk +30 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 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 7 chunks +40 lines, -7 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 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 17 chunks +305 lines, -67 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 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 4 chunks +7 lines, -18 lines 0 comments Download
M content/browser/renderer_host/compositor_impl_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 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 6 chunks +5 lines, -6 lines 0 comments Download
M content/public/common/content_switches.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 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 1 chunk +1 line, -0 lines 0 comments Download
M content/public/common/content_switches.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 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 1 chunk +4 lines, -0 lines 0 comments Download
M content/renderer/gpu/render_widget_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 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 3 chunks +0 lines, -3 lines 0 comments Download
M content/renderer/gpu/render_widget_compositor.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 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 6 chunks +9 lines, -23 lines 0 comments Download
M content/renderer/render_widget.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 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 3 chunks +6 lines, -1 line 0 comments Download
M content/renderer/render_widget.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 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 5 chunks +18 lines, -9 lines 0 comments Download
M content/shell/renderer/test_runner/web_test_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 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 2 chunks +6 lines, -0 lines 0 comments Download
M content/test/web_layer_tree_view_impl_for_testing.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 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 1 chunk +0 lines, -2 lines 0 comments Download
M ui/compositor/compositor.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 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 1 chunk +1 line, -0 lines 0 comments Download

Messages

Total messages: 212 (0 generated)
enne (OOO)
Depends on https://codereview.chromium.org/162473003/ and https://codereview.chromium.org/154163005/.
6 years, 10 months ago (2014-02-14 22:32:15 UTC) #1
danakj
On 2014/02/14 22:32:15, enne wrote: > Depends on https://codereview.chromium.org/162473003/ and > https://codereview.chromium.org/154163005/. Could throw this ...
6 years, 10 months ago (2014-02-18 23:02:49 UTC) #2
danakj
So cooool https://codereview.chromium.org/134623005/diff/320001/cc/test/layer_tree_test.cc File cc/test/layer_tree_test.cc (right): https://codereview.chromium.org/134623005/diff/320001/cc/test/layer_tree_test.cc#newcode610 cc/test/layer_tree_test.cc:610: // If the LTH is not visible, ...
6 years, 10 months ago (2014-02-19 20:42:38 UTC) #3
enne (OOO)
Looks like I've got some failing tests too. I'll take a look. Here's an updated ...
6 years, 10 months ago (2014-02-20 00:35:44 UTC) #4
danakj
https://codereview.chromium.org/134623005/diff/320001/cc/trees/single_thread_proxy.cc File cc/trees/single_thread_proxy.cc (right): https://codereview.chromium.org/134623005/diff/320001/cc/trees/single_thread_proxy.cc#newcode193 cc/trees/single_thread_proxy.cc:193: FROM_HERE, output_surface_creation_callback_.callback()); On 2014/02/20 00:35:44, enne wrote: > On ...
6 years, 10 months ago (2014-02-20 19:30:55 UTC) #5
enne (OOO)
https://codereview.chromium.org/134623005/diff/320001/cc/trees/single_thread_proxy.cc File cc/trees/single_thread_proxy.cc (right): https://codereview.chromium.org/134623005/diff/320001/cc/trees/single_thread_proxy.cc#newcode193 cc/trees/single_thread_proxy.cc:193: FROM_HERE, output_surface_creation_callback_.callback()); On 2014/02/20 19:30:55, danakj wrote: > On ...
6 years, 10 months ago (2014-02-20 20:01:39 UTC) #6
danakj
https://codereview.chromium.org/134623005/diff/320001/cc/trees/single_thread_proxy.cc File cc/trees/single_thread_proxy.cc (right): https://codereview.chromium.org/134623005/diff/320001/cc/trees/single_thread_proxy.cc#newcode212 cc/trees/single_thread_proxy.cc:212: SetNeedsCommit(); 2014/02/20 20:01:39, enne wrote: > On 2014/02/20 19:30:55, ...
6 years, 10 months ago (2014-02-20 20:06:33 UTC) #7
danakj
On 2014/02/20 20:06:33, danakj wrote: > https://codereview.chromium.org/134623005/diff/320001/cc/trees/single_thread_proxy.cc > File cc/trees/single_thread_proxy.cc (right): > > https://codereview.chromium.org/134623005/diff/320001/cc/trees/single_thread_proxy.cc#newcode212 > ...
6 years, 10 months ago (2014-02-20 20:08:13 UTC) #8
enne (OOO)
You're suggesting an optimization that wasn't there before, and I'm suggesting that we punt because ...
6 years, 10 months ago (2014-02-20 20:12:35 UTC) #9
danakj
On Thu, Feb 20, 2014 at 3:12 PM, <enne@chromium.org> wrote: > You're suggesting an optimization ...
6 years, 10 months ago (2014-02-20 20:14:51 UTC) #10
danakj
https://codereview.chromium.org/134623005/diff/560001/cc/trees/single_thread_proxy.cc File cc/trees/single_thread_proxy.cc (right): https://codereview.chromium.org/134623005/diff/560001/cc/trees/single_thread_proxy.cc#newcode190 cc/trees/single_thread_proxy.cc:190: weak_ptr_ = weak_factory_.GetWeakPtr(); I don't think you need a ...
6 years, 10 months ago (2014-02-20 20:56:39 UTC) #11
enne (OOO)
https://codereview.chromium.org/134623005/diff/560001/cc/trees/single_thread_proxy.cc File cc/trees/single_thread_proxy.cc (right): https://codereview.chromium.org/134623005/diff/560001/cc/trees/single_thread_proxy.cc#newcode190 cc/trees/single_thread_proxy.cc:190: weak_ptr_ = weak_factory_.GetWeakPtr(); On 2014/02/20 20:56:40, danakj wrote: > ...
6 years, 10 months ago (2014-02-20 21:07:12 UTC) #12
danakj
https://codereview.chromium.org/134623005/diff/560001/cc/trees/single_thread_proxy.cc File cc/trees/single_thread_proxy.cc (right): https://codereview.chromium.org/134623005/diff/560001/cc/trees/single_thread_proxy.cc#newcode190 cc/trees/single_thread_proxy.cc:190: weak_ptr_ = weak_factory_.GetWeakPtr(); On 2014/02/20 21:07:13, enne wrote: > ...
6 years, 10 months ago (2014-02-20 21:09:46 UTC) #13
enne (OOO)
This should be ready to go at this point. https://codereview.chromium.org/134623005/diff/560001/cc/trees/single_thread_proxy.cc File cc/trees/single_thread_proxy.cc (right): https://codereview.chromium.org/134623005/diff/560001/cc/trees/single_thread_proxy.cc#newcode190 cc/trees/single_thread_proxy.cc:190: ...
6 years, 10 months ago (2014-02-21 19:34:09 UTC) #14
danakj
LGTM => jamesr for content/renderer/ https://codereview.chromium.org/134623005/diff/750001/content/browser/compositor/software_browser_compositor_output_surface_unittest.cc File content/browser/compositor/software_browser_compositor_output_surface_unittest.cc (right): https://codereview.chromium.org/134623005/diff/750001/content/browser/compositor/software_browser_compositor_output_surface_unittest.cc#newcode78 content/browser/compositor/software_browser_compositor_output_surface_unittest.cc:78: scoped_ptr<ui::TestCompositorHost> window_; s/window_/compositor_host_/
6 years, 10 months ago (2014-02-21 19:36:20 UTC) #15
danakj
jamesr@chromium.org: Please review changes in content/renderer
6 years, 10 months ago (2014-02-21 19:36:34 UTC) #16
enne (OOO)
https://codereview.chromium.org/134623005/diff/750001/content/browser/compositor/software_browser_compositor_output_surface_unittest.cc File content/browser/compositor/software_browser_compositor_output_surface_unittest.cc (right): https://codereview.chromium.org/134623005/diff/750001/content/browser/compositor/software_browser_compositor_output_surface_unittest.cc#newcode78 content/browser/compositor/software_browser_compositor_output_surface_unittest.cc:78: scoped_ptr<ui::TestCompositorHost> window_; On 2014/02/21 19:36:21, danakj wrote: > s/window_/compositor_host_/ ...
6 years, 10 months ago (2014-02-21 19:41:31 UTC) #17
danakj
On Fri, Feb 21, 2014 at 2:41 PM, <enne@chromium.org> wrote: > > https://codereview.chromium.org/134623005/diff/750001/ > content/browser/compositor/software_browser_compositor_ ...
6 years, 10 months ago (2014-02-21 19:49:27 UTC) #18
jamesr
I think for RenderWidget we'd be better off moving all of the scheduling responsibilities over ...
6 years, 10 months ago (2014-02-21 22:39:07 UTC) #19
enne (OOO)
Oh, RenderWidget. Oh, Linux GTK. :( I'm going to put this patch back in the ...
6 years, 9 months ago (2014-02-24 22:46:15 UTC) #20
danakj
From sievers on another CL: > Also see LayerTreeHostClientNotReadyDoesNotCreateOutputSurface, which is > however only run ...
6 years, 8 months ago (2014-04-14 18:52:11 UTC) #21
enne (OOO)
PTAL https://codereview.chromium.org/134623005/diff/1180001/cc/scheduler/scheduler.cc File cc/scheduler/scheduler.cc (right): https://codereview.chromium.org/134623005/diff/1180001/cc/scheduler/scheduler.cc#newcode275 cc/scheduler/scheduler.cc:275: if (!impl_task_runner_) This seemed like the only place ...
6 years, 6 months ago (2014-06-12 20:45:00 UTC) #22
brianderson
https://codereview.chromium.org/134623005/diff/1180001/cc/scheduler/scheduler.cc File cc/scheduler/scheduler.cc (right): https://codereview.chromium.org/134623005/diff/1180001/cc/scheduler/scheduler.cc#newcode275 cc/scheduler/scheduler.cc:275: if (!impl_task_runner_) On 2014/06/12 20:44:59, enne wrote: > This ...
6 years, 6 months ago (2014-06-12 23:00:36 UTC) #23
enne (OOO)
https://codereview.chromium.org/134623005/diff/1180001/cc/scheduler/scheduler.cc File cc/scheduler/scheduler.cc (right): https://codereview.chromium.org/134623005/diff/1180001/cc/scheduler/scheduler.cc#newcode275 cc/scheduler/scheduler.cc:275: if (!impl_task_runner_) On 2014/06/12 23:00:36, brianderson wrote: > On ...
6 years, 6 months ago (2014-06-12 23:09:11 UTC) #24
simonhong
Hi enne, I did some review and hopes my comment is helpful. https://codereview.chromium.org/134623005/diff/1220001/cc/trees/layer_tree_host.cc File cc/trees/layer_tree_host.cc ...
6 years, 6 months ago (2014-06-13 11:55:12 UTC) #25
enne (OOO)
https://codereview.chromium.org/134623005/diff/1220001/cc/trees/layer_tree_host.cc File cc/trees/layer_tree_host.cc (right): https://codereview.chromium.org/134623005/diff/1220001/cc/trees/layer_tree_host.cc#newcode716 cc/trees/layer_tree_host.cc:716: SetLayerTreeHostClientReady(); On 2014/06/13 11:55:12, simonhong wrote: > Is there ...
6 years, 6 months ago (2014-06-13 18:06:37 UTC) #26
danakj
https://codereview.chromium.org/134623005/diff/1220001/cc/trees/single_thread_proxy.cc File cc/trees/single_thread_proxy.cc (right): https://codereview.chromium.org/134623005/diff/1220001/cc/trees/single_thread_proxy.cc#newcode575 cc/trees/single_thread_proxy.cc:575: DrawResult SingleThreadProxy::ScheduledActionDrawAndSwapForced() { On 2014/06/13 18:06:37, enne wrote: > ...
6 years, 6 months ago (2014-06-13 18:09:33 UTC) #27
enne (OOO)
https://codereview.chromium.org/134623005/diff/1220001/cc/trees/single_thread_proxy.cc File cc/trees/single_thread_proxy.cc (right): https://codereview.chromium.org/134623005/diff/1220001/cc/trees/single_thread_proxy.cc#newcode575 cc/trees/single_thread_proxy.cc:575: DrawResult SingleThreadProxy::ScheduledActionDrawAndSwapForced() { On 2014/06/13 18:09:32, danakj wrote: > ...
6 years, 6 months ago (2014-06-13 18:32:22 UTC) #28
danakj
https://codereview.chromium.org/134623005/diff/1240001/cc/test/layer_tree_test.cc File cc/test/layer_tree_test.cc (right): https://codereview.chromium.org/134623005/diff/1240001/cc/test/layer_tree_test.cc#newcode314 cc/test/layer_tree_test.cc:314: virtual void ScheduleComposite() OVERRIDE { Are there any callers ...
6 years, 6 months ago (2014-06-13 18:34:10 UTC) #29
enne (OOO)
https://codereview.chromium.org/134623005/diff/1240001/cc/test/layer_tree_test.cc File cc/test/layer_tree_test.cc (right): https://codereview.chromium.org/134623005/diff/1240001/cc/test/layer_tree_test.cc#newcode314 cc/test/layer_tree_test.cc:314: virtual void ScheduleComposite() OVERRIDE { On 2014/06/13 18:34:10, danakj ...
6 years, 6 months ago (2014-06-13 20:10:42 UTC) #30
danakj
https://codereview.chromium.org/134623005/diff/1240001/cc/trees/single_thread_proxy.cc File cc/trees/single_thread_proxy.cc (right): https://codereview.chromium.org/134623005/diff/1240001/cc/trees/single_thread_proxy.cc#newcode601 cc/trees/single_thread_proxy.cc:601: CreateAndInitializeOutputSurface(); On 2014/06/13 20:10:42, enne wrote: > On 2014/06/13 ...
6 years, 6 months ago (2014-06-13 20:16:39 UTC) #31
enne (OOO)
https://codereview.chromium.org/134623005/diff/1240001/cc/trees/single_thread_proxy.cc File cc/trees/single_thread_proxy.cc (right): https://codereview.chromium.org/134623005/diff/1240001/cc/trees/single_thread_proxy.cc#newcode601 cc/trees/single_thread_proxy.cc:601: CreateAndInitializeOutputSurface(); On 2014/06/13 20:16:38, danakj wrote: > On 2014/06/13 ...
6 years, 6 months ago (2014-06-13 20:32:29 UTC) #32
no sievers
https://codereview.chromium.org/134623005/diff/1340002/content/browser/renderer_host/compositor_impl_android.cc File content/browser/renderer_host/compositor_impl_android.cc (right): https://codereview.chromium.org/134623005/diff/1340002/content/browser/renderer_host/compositor_impl_android.cc#newcode312 content/browser/renderer_host/compositor_impl_android.cc:312: host_->SetDeferCommits(true); I'm slightly worried that during client_->Layout() below, where ...
6 years, 6 months ago (2014-06-13 21:25:43 UTC) #33
danakj
https://codereview.chromium.org/134623005/diff/1340002/content/browser/renderer_host/compositor_impl_android.cc File content/browser/renderer_host/compositor_impl_android.cc (right): https://codereview.chromium.org/134623005/diff/1340002/content/browser/renderer_host/compositor_impl_android.cc#newcode312 content/browser/renderer_host/compositor_impl_android.cc:312: host_->SetDeferCommits(true); On 2014/06/13 21:25:43, sievers wrote: > I'm slightly ...
6 years, 6 months ago (2014-06-13 21:41:54 UTC) #34
enne (OOO)
https://codereview.chromium.org/134623005/diff/1340002/content/browser/renderer_host/compositor_impl_android.cc File content/browser/renderer_host/compositor_impl_android.cc (right): https://codereview.chromium.org/134623005/diff/1340002/content/browser/renderer_host/compositor_impl_android.cc#newcode458 content/browser/renderer_host/compositor_impl_android.cc:458: PostComposite(COMPOSITE_IMMEDIATELY); On 2014/06/13 21:25:43, sievers wrote: > Does this ...
6 years, 6 months ago (2014-06-17 17:15:23 UTC) #35
enne (OOO)
PTAL In order to make this patch more landable, I've left CompositorImpl doing the same ...
6 years, 6 months ago (2014-06-18 21:03:30 UTC) #36
enne (OOO)
https://codereview.chromium.org/134623005/diff/1390001/cc/trees/layer_tree_host_single_thread_client.h File cc/trees/layer_tree_host_single_thread_client.h (right): https://codereview.chromium.org/134623005/diff/1390001/cc/trees/layer_tree_host_single_thread_client.h#newcode13 cc/trees/layer_tree_host_single_thread_client.h:13: virtual void ScheduleComposite() {} I had to bring these ...
6 years, 6 months ago (2014-06-18 21:03:42 UTC) #37
danakj
https://codereview.chromium.org/134623005/diff/1390001/cc/test/layer_tree_test.cc File cc/test/layer_tree_test.cc (right): https://codereview.chromium.org/134623005/diff/1390001/cc/test/layer_tree_test.cc#newcode600 cc/test/layer_tree_test.cc:600: if (!layer_tree_host_) instead of early out now just: if ...
6 years, 6 months ago (2014-06-19 17:20:37 UTC) #38
enne (OOO)
https://codereview.chromium.org/134623005/diff/1390001/cc/test/layer_tree_test.cc File cc/test/layer_tree_test.cc (right): https://codereview.chromium.org/134623005/diff/1390001/cc/test/layer_tree_test.cc#newcode600 cc/test/layer_tree_test.cc:600: if (!layer_tree_host_) On 2014/06/19 17:20:36, danakj wrote: > instead ...
6 years, 6 months ago (2014-06-19 20:32:28 UTC) #39
danakj
Last round of comments I think.. thanks for all the fixings https://codereview.chromium.org/134623005/diff/1430001/cc/trees/single_thread_proxy.cc File cc/trees/single_thread_proxy.cc (right): ...
6 years, 6 months ago (2014-06-19 22:04:02 UTC) #40
enne (OOO)
https://codereview.chromium.org/134623005/diff/1430001/cc/trees/single_thread_proxy.cc File cc/trees/single_thread_proxy.cc (right): https://codereview.chromium.org/134623005/diff/1430001/cc/trees/single_thread_proxy.cc#newcode268 cc/trees/single_thread_proxy.cc:268: if (!defer_commits_ && finish_commit_deferred_) { On 2014/06/19 22:04:02, danakj ...
6 years, 6 months ago (2014-06-19 22:38:06 UTC) #41
danakj
https://codereview.chromium.org/134623005/diff/1430001/cc/trees/single_thread_proxy.cc File cc/trees/single_thread_proxy.cc (right): https://codereview.chromium.org/134623005/diff/1430001/cc/trees/single_thread_proxy.cc#newcode282 cc/trees/single_thread_proxy.cc:282: return finish_commit_deferred_; On 2014/06/19 22:38:06, enne wrote: > On ...
6 years, 6 months ago (2014-06-19 22:41:21 UTC) #42
danakj
LGTM
6 years, 6 months ago (2014-06-19 22:42:02 UTC) #43
enne (OOO)
brianderson mentioned that he wanted a chance to look at this too, so holding off ...
6 years, 6 months ago (2014-06-20 17:54:04 UTC) #44
brianderson
https://codereview.chromium.org/134623005/diff/1450001/cc/trees/layer_tree_host_unittest.cc File cc/trees/layer_tree_host_unittest.cc (left): https://codereview.chromium.org/134623005/diff/1450001/cc/trees/layer_tree_host_unittest.cc#oldcode95 cc/trees/layer_tree_host_unittest.cc:95: EXPECT_GE(1, num_draws_); Why did these change from EXPECT_GE to ...
6 years, 6 months ago (2014-06-20 23:08:13 UTC) #45
danakj
I'll let enne@ answer the rest but here's some feedback https://codereview.chromium.org/134623005/diff/1450001/cc/trees/single_thread_proxy.cc File cc/trees/single_thread_proxy.cc (right): https://codereview.chromium.org/134623005/diff/1450001/cc/trees/single_thread_proxy.cc#newcode132 ...
6 years, 6 months ago (2014-06-20 23:15:31 UTC) #46
enne (OOO)
https://codereview.chromium.org/134623005/diff/1450001/cc/trees/layer_tree_host_unittest.cc File cc/trees/layer_tree_host_unittest.cc (left): https://codereview.chromium.org/134623005/diff/1450001/cc/trees/layer_tree_host_unittest.cc#oldcode95 cc/trees/layer_tree_host_unittest.cc:95: EXPECT_GE(1, num_draws_); On 2014/06/20 23:08:12, brianderson wrote: > Why ...
6 years, 6 months ago (2014-06-23 17:08:45 UTC) #47
brianderson
Thanks for answering my questions. lgtm2. https://codereview.chromium.org/134623005/diff/1450001/cc/trees/layer_tree_host_unittest.cc File cc/trees/layer_tree_host_unittest.cc (left): https://codereview.chromium.org/134623005/diff/1450001/cc/trees/layer_tree_host_unittest.cc#oldcode95 cc/trees/layer_tree_host_unittest.cc:95: EXPECT_GE(1, num_draws_); Don't ...
6 years, 6 months ago (2014-06-23 20:20:05 UTC) #48
enne (OOO)
The CQ bit was checked by enne@chromium.org
6 years, 6 months ago (2014-06-23 20:22:24 UTC) #49
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/enne@chromium.org/134623005/1510001
6 years, 6 months ago (2014-06-23 20:24:04 UTC) #50
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). The failing builders are: chromium_presubmit on tryserver.chromium ...
6 years, 6 months ago (2014-06-24 02:07:27 UTC) #51
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 6 months ago (2014-06-24 02:11:09 UTC) #52
commit-bot: I haz the power
Try jobs failed on following builders: chromium_presubmit on tryserver.chromium (http://build.chromium.org/p/tryserver.chromium/builders/chromium_presubmit/builds/75856)
6 years, 6 months ago (2014-06-24 02:11:11 UTC) #53
enne (OOO)
boliu: android_webview/ OWNERS piman: content/ OWNERS
6 years, 6 months ago (2014-06-24 06:58:14 UTC) #54
boliu
The DCHECK in HardwareRenderer::DidBeginMainFrame is failing. Previously it was assumed to be only called from ...
6 years, 5 months ago (2014-06-24 16:33:11 UTC) #55
piman
LGTM for content/
6 years, 5 months ago (2014-06-24 18:29:06 UTC) #56
enne (OOO)
On 2014/06/24 16:33:11, boliu wrote: > The DCHECK in HardwareRenderer::DidBeginMainFrame is failing. Previously it was ...
6 years, 5 months ago (2014-06-24 18:54:04 UTC) #57
boliu
lgtm
6 years, 5 months ago (2014-06-24 18:54:56 UTC) #58
enne (OOO)
The CQ bit was checked by enne@chromium.org
6 years, 5 months ago (2014-06-24 18:56:42 UTC) #59
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/enne@chromium.org/134623005/1530001
6 years, 5 months ago (2014-06-24 18:58:35 UTC) #60
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). The failing builders are: linux_chromium_chromeos_rel on tryserver.chromium ...
6 years, 5 months ago (2014-06-24 22:11:21 UTC) #61
enne (OOO)
The CQ bit was unchecked by enne@chromium.org
6 years, 5 months ago (2014-06-24 22:34:58 UTC) #62
enne (OOO)
The win8 aura issues seem legit. It looks like the copy output results posted to ...
6 years, 5 months ago (2014-06-24 22:40:15 UTC) #63
enne (OOO)
Ok, I see what's happening. I think this has potentially always been flaky. These two ...
6 years, 5 months ago (2014-06-25 22:49:04 UTC) #64
enne (OOO)
Ok, after a conversation with danakj, I went ahead and made DrawWaiter differentiate between OnCompositingStarted ...
6 years, 5 months ago (2014-06-26 00:06:35 UTC) #65
danakj
LGTM thanks!!
6 years, 5 months ago (2014-06-26 00:19:06 UTC) #66
enne (OOO)
The CQ bit was checked by enne@chromium.org
6 years, 5 months ago (2014-06-26 00:21:58 UTC) #67
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/enne@chromium.org/134623005/1570001
6 years, 5 months ago (2014-06-26 00:24:02 UTC) #68
enne (OOO)
The CQ bit was checked by enne@chromium.org
6 years, 5 months ago (2014-06-26 01:37:00 UTC) #69
enne (OOO)
The CQ bit was unchecked by enne@chromium.org
6 years, 5 months ago (2014-06-26 01:37:50 UTC) #70
enne (OOO)
ben: ui/views and ui/snapshot OWNERS
6 years, 5 months ago (2014-06-26 01:38:26 UTC) #71
enne (OOO)
TBRing ben for ui/ since it's just renaming a function from ui/compositor/.
6 years, 5 months ago (2014-06-26 17:26:12 UTC) #72
enne (OOO)
The CQ bit was checked by enne@chromium.org
6 years, 5 months ago (2014-06-26 17:26:43 UTC) #73
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/enne@chromium.org/134623005/1590001
6 years, 5 months ago (2014-06-26 17:27:37 UTC) #74
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). The failing builders are: linux_chromium_chromeos_rel on tryserver.chromium ...
6 years, 5 months ago (2014-06-26 21:58:10 UTC) #75
Ben Goodger (Google)
lgtm
6 years, 5 months ago (2014-06-26 22:35:54 UTC) #76
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 5 months ago (2014-06-26 23:10:34 UTC) #77
commit-bot: I haz the power
Try jobs failed on following builders: linux_chromium_rel on tryserver.chromium (http://build.chromium.org/p/tryserver.chromium/builders/linux_chromium_rel/builds/46495)
6 years, 5 months ago (2014-06-26 23:10:36 UTC) #78
enne (OOO)
Hmm, these all look like legit failures in browser tests that are now trying to ...
6 years, 5 months ago (2014-06-27 00:57:42 UTC) #79
enne (OOO)
https://codereview.chromium.org/134623005/diff/1610001/cc/trees/single_thread_proxy.cc File cc/trees/single_thread_proxy.cc (right): https://codereview.chromium.org/134623005/diff/1610001/cc/trees/single_thread_proxy.cc#newcode262 cc/trees/single_thread_proxy.cc:262: if (!scheduler_on_impl_thread_) This has to not be a DCHECK ...
6 years, 5 months ago (2014-06-27 19:16:51 UTC) #80
enne (OOO)
The CQ bit was checked by enne@chromium.org
6 years, 5 months ago (2014-06-27 19:17:02 UTC) #81
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/enne@chromium.org/134623005/1610001
6 years, 5 months ago (2014-06-27 19:18:20 UTC) #82
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). The failing builders are: linux_chromium_rel on tryserver.chromium ...
6 years, 5 months ago (2014-06-27 22:21:38 UTC) #83
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 5 months ago (2014-06-27 22:29:37 UTC) #84
commit-bot: I haz the power
Try jobs failed on following builders: win_chromium_x64_rel on tryserver.chromium (http://build.chromium.org/p/tryserver.chromium/builders/win_chromium_x64_rel/builds/26091)
6 years, 5 months ago (2014-06-27 22:29:39 UTC) #85
enne (OOO)
Trybots turned up another failure where WebContentsViewAuraTest.OverscrollNavigationWithTouchHandler timed out. It turns out this was because ...
6 years, 5 months ago (2014-06-28 00:11:04 UTC) #86
enne (OOO)
The CQ bit was checked by enne@chromium.org
6 years, 5 months ago (2014-06-28 00:11:25 UTC) #87
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/enne@chromium.org/134623005/1630001
6 years, 5 months ago (2014-06-28 00:12:49 UTC) #88
enne (OOO)
The CQ bit was checked by enne@chromium.org
6 years, 5 months ago (2014-06-28 00:37:53 UTC) #89
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/enne@chromium.org/134623005/1650001
6 years, 5 months ago (2014-06-28 00:38:06 UTC) #90
commit-bot: I haz the power
Change committed as 280493
6 years, 5 months ago (2014-06-28 05:35:58 UTC) #91
sof
Causing a number of crashes on the blink bots, e.g., http://build.chromium.org/p/tryserver.blink/builders/linux_blink_rel
6 years, 5 months ago (2014-06-28 13:53:46 UTC) #92
Nikita (slow)
I wonder if this was the root cause for test failure, see http://build.chromium.org/p/chromium.memory/builders/Linux%20ASan%20Tests%20%28sandboxed%29/builds/3034 I'm thinking ...
6 years, 5 months ago (2014-06-28 17:48:19 UTC) #93
Nikita (slow)
A revert of this CL has been created in https://codereview.chromium.org/359103003/ by nkostylev@chromium.org. The reason for ...
6 years, 5 months ago (2014-06-28 17:50:12 UTC) #94
Nikita (slow)
A revert of this CL has been created in https://codereview.chromium.org/342413005/ by nkostylev@chromium.org. The reason for ...
6 years, 5 months ago (2014-06-28 17:51:56 UTC) #95
Nikita (slow)
Ok, these reverts CLs are not properly tagged so I'm using drover now.
6 years, 5 months ago (2014-06-28 17:55:10 UTC) #96
Nikita (slow)
On 2014/06/28 17:55:10, Nikita Kostylev wrote: > Ok, these reverts CLs are not properly tagged ...
6 years, 5 months ago (2014-06-28 17:57:56 UTC) #97
Nikita (slow)
On 2014/06/28 13:53:46, sof wrote: > Causing a number of crashes on the blink bots, ...
6 years, 5 months ago (2014-06-28 18:30:42 UTC) #98
Nikita (slow)
On 2014/06/28 17:48:19, Nikita Kostylev wrote: > I wonder if this was the root cause ...
6 years, 5 months ago (2014-06-28 18:49:49 UTC) #99
Nikita (slow)
On 2014/06/28 13:53:46, sof wrote: > Causing a number of crashes on the blink bots, ...
6 years, 5 months ago (2014-06-28 18:54:28 UTC) #100
enne (OOO)
https://codereview.chromium.org/134623005/diff/1670001/content/renderer/gpu/render_widget_compositor.cc File content/renderer/gpu/render_widget_compositor.cc (right): https://codereview.chromium.org/134623005/diff/1670001/content/renderer/gpu/render_widget_compositor.cc#newcode580 content/renderer/gpu/render_widget_compositor.cc:580: layer_tree_host_->Composite(gfx::FrameTime::Now()); This call was breaking in layout tests as ...
6 years, 5 months ago (2014-06-30 22:22:08 UTC) #101
mithro-old
Hi, What is the status of this patch, it looks like it was landed and ...
6 years, 5 months ago (2014-07-02 06:05:47 UTC) #102
enne (OOO)
On 2014/07/02 at 06:05:47, mithro wrote: > What is the status of this patch, it ...
6 years, 5 months ago (2014-07-02 17:23:52 UTC) #103
enne (OOO)
I'm going to wait on https://codereview.chromium.org/362403003/ to land and then see what the Blink trybots ...
6 years, 5 months ago (2014-07-02 21:19:43 UTC) #104
enne (OOO)
I'm going to wait on https://codereview.chromium.org/362403003/ to land and then see what the Blink trybots ...
6 years, 5 months ago (2014-07-02 21:19:46 UTC) #105
danakj
LGTM https://codereview.chromium.org/134623005/diff/1710001/content/renderer/render_widget.cc File content/renderer/render_widget.cc (right): https://codereview.chromium.org/134623005/diff/1710001/content/renderer/render_widget.cc#newcode1171 content/renderer/render_widget.cc:1171: if (host_closing_) Do you think this can/should be ...
6 years, 5 months ago (2014-07-02 21:31:42 UTC) #106
enne (OOO)
I'm going to throw this at the blink bots and see what comes out. Locally ...
6 years, 5 months ago (2014-07-10 20:37:43 UTC) #107
jamesr
https://codereview.chromium.org/134623005/diff/1730001/content/renderer/gpu/render_widget_compositor.cc File content/renderer/gpu/render_widget_compositor.cc (right): https://codereview.chromium.org/134623005/diff/1730001/content/renderer/gpu/render_widget_compositor.cc#newcode423 content/renderer/gpu/render_widget_compositor.cc:423: void RenderWidgetCompositor::SetSuppressScheduleComposite(bool suppress) { On 2014/07/10 20:37:42, enne wrote: ...
6 years, 5 months ago (2014-07-10 21:55:40 UTC) #108
danakj
https://codereview.chromium.org/134623005/diff/1730001/content/renderer/gpu/render_widget_compositor.cc File content/renderer/gpu/render_widget_compositor.cc (right): https://codereview.chromium.org/134623005/diff/1730001/content/renderer/gpu/render_widget_compositor.cc#newcode423 content/renderer/gpu/render_widget_compositor.cc:423: void RenderWidgetCompositor::SetSuppressScheduleComposite(bool suppress) { On 2014/07/10 21:55:40, jamesr wrote: ...
6 years, 5 months ago (2014-07-10 21:57:14 UTC) #109
enne (OOO)
https://codereview.chromium.org/134623005/diff/1730001/content/renderer/gpu/render_widget_compositor.cc File content/renderer/gpu/render_widget_compositor.cc (right): https://codereview.chromium.org/134623005/diff/1730001/content/renderer/gpu/render_widget_compositor.cc#newcode423 content/renderer/gpu/render_widget_compositor.cc:423: void RenderWidgetCompositor::SetSuppressScheduleComposite(bool suppress) { On 2014/07/10 21:55:40, jamesr wrote: ...
6 years, 5 months ago (2014-07-10 22:03:49 UTC) #110
jamesr
Gotcha, makes sense.
6 years, 5 months ago (2014-07-10 22:09:10 UTC) #111
enne (OOO)
Hmm, looks like ccameron landed a patch this week that calls ui::Compositor::Draw which got removed ...
6 years, 5 months ago (2014-07-11 17:32:24 UTC) #112
enne (OOO)
On 2014/07/11 at 17:32:24, enne wrote: > Hmm, looks like ccameron landed a patch this ...
6 years, 5 months ago (2014-07-13 05:22:43 UTC) #113
enne (OOO)
Punted on fixing flaky layout tests by adding a content switch to disable this SingleThreadProxy ...
6 years, 5 months ago (2014-07-23 20:45:53 UTC) #114
enne (OOO)
The CQ bit was checked by enne@chromium.org
6 years, 5 months ago (2014-07-23 20:46:18 UTC) #115
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/enne@chromium.org/134623005/1870001
6 years, 5 months ago (2014-07-23 20:48:27 UTC) #116
enne (OOO)
The CQ bit was checked by enne@chromium.org
6 years, 5 months ago (2014-07-23 21:56:23 UTC) #117
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/enne@chromium.org/134623005/1890001
6 years, 5 months ago (2014-07-23 21:57:03 UTC) #118
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). The failing builders are: mac_chromium_rel on tryserver.chromium ...
6 years, 5 months ago (2014-07-24 03:04:09 UTC) #119
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 5 months ago (2014-07-24 03:46:12 UTC) #120
commit-bot: I haz the power
Try jobs failed on following builders: mac_gpu_retina_triggered_tests on tryserver.chromium.gpu (http://build.chromium.org/p/tryserver.chromium.gpu/builders/mac_gpu_retina_triggered_tests/builds/27429)
6 years, 5 months ago (2014-07-24 03:46:15 UTC) #121
enne (OOO)
The CQ bit was checked by enne@chromium.org
6 years, 4 months ago (2014-07-24 17:03:16 UTC) #122
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/enne@chromium.org/134623005/1890001
6 years, 4 months ago (2014-07-24 17:05:21 UTC) #123
Ken Russell (switch to Gerrit)
On 2014/07/24 03:46:15, I haz the power (commit-bot) wrote: > Try jobs failed on following ...
6 years, 4 months ago (2014-07-24 18:00:36 UTC) #124
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). The failing builders are: mac_chromium_rel on tryserver.chromium ...
6 years, 4 months ago (2014-07-24 19:55:59 UTC) #125
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 4 months ago (2014-07-24 20:33:44 UTC) #126
commit-bot: I haz the power
Try jobs failed on following builders: mac_gpu_retina_triggered_tests on tryserver.chromium.gpu (http://build.chromium.org/p/tryserver.chromium.gpu/builders/mac_gpu_retina_triggered_tests/builds/27811)
6 years, 4 months ago (2014-07-24 20:33:47 UTC) #127
enne (OOO)
https://codereview.chromium.org/134623005/diff/1930001/ui/compositor/compositor.cc File ui/compositor/compositor.cc (right): https://codereview.chromium.org/134623005/diff/1930001/ui/compositor/compositor.cc#newcode184 ui/compositor/compositor.cc:184: void Compositor::ScheduleFullRedraw() { content/browser/compositor/browser_compositor_view_private_mac.mm calls this function and expects ...
6 years, 4 months ago (2014-07-25 21:20:31 UTC) #128
enne (OOO)
The CQ bit was checked by enne@chromium.org
6 years, 4 months ago (2014-07-25 21:20:49 UTC) #129
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/enne@chromium.org/134623005/1930001
6 years, 4 months ago (2014-07-25 21:22:06 UTC) #130
piman
https://codereview.chromium.org/134623005/diff/1930001/ui/compositor/compositor.cc File ui/compositor/compositor.cc (right): https://codereview.chromium.org/134623005/diff/1930001/ui/compositor/compositor.cc#newcode190 ui/compositor/compositor.cc:190: host_->SetNeedsCommit(); Could we fix mac instead? The other callers ...
6 years, 4 months ago (2014-07-25 21:44:23 UTC) #131
enne (OOO)
https://codereview.chromium.org/134623005/diff/1930001/ui/compositor/compositor.cc File ui/compositor/compositor.cc (right): https://codereview.chromium.org/134623005/diff/1930001/ui/compositor/compositor.cc#newcode190 ui/compositor/compositor.cc:190: host_->SetNeedsCommit(); On 2014/07/25 21:44:23, piman (slow to review) wrote: ...
6 years, 4 months ago (2014-07-25 21:46:19 UTC) #132
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). The failing builders are: linux_chromium_clang_dbg on tryserver.chromium ...
6 years, 4 months ago (2014-07-26 05:02:22 UTC) #133
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). The failing builders are: mac_gpu_triggered_tests on tryserver.chromium.gpu ...
6 years, 4 months ago (2014-07-26 05:26:24 UTC) #134
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 4 months ago (2014-07-26 05:28:29 UTC) #135
commit-bot: I haz the power
Try jobs failed on following builders: mac_gpu_triggered_tests on tryserver.chromium.gpu (http://build.chromium.org/p/tryserver.chromium.gpu/builders/mac_gpu_triggered_tests/builds/28403)
6 years, 4 months ago (2014-07-26 05:28:31 UTC) #136
enne (OOO)
Hmm, ok. It looks like although this patch fixes a number of failures in gpu ...
6 years, 4 months ago (2014-07-29 00:31:46 UTC) #137
ccameron
On 2014/07/29 00:31:46, enne wrote: > Hmm, ok. It looks like although this patch fixes ...
6 years, 4 months ago (2014-07-29 00:33:20 UTC) #138
enne (OOO)
https://codereview.chromium.org/134623005/diff/1980001/cc/trees/single_thread_proxy.cc File cc/trees/single_thread_proxy.cc (right): https://codereview.chromium.org/134623005/diff/1980001/cc/trees/single_thread_proxy.cc#newcode575 cc/trees/single_thread_proxy.cc:575: // Although this proxy is single-threaded, it's problematic to ...
6 years, 4 months ago (2014-07-30 22:26:59 UTC) #139
enne (OOO)
The CQ bit was checked by enne@chromium.org
6 years, 4 months ago (2014-07-30 22:27:18 UTC) #140
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/enne@chromium.org/134623005/1980001
6 years, 4 months ago (2014-07-30 22:28:45 UTC) #141
piman
https://codereview.chromium.org/134623005/diff/1980001/cc/trees/single_thread_proxy.cc File cc/trees/single_thread_proxy.cc (right): https://codereview.chromium.org/134623005/diff/1980001/cc/trees/single_thread_proxy.cc#newcode575 cc/trees/single_thread_proxy.cc:575: // Although this proxy is single-threaded, it's problematic to ...
6 years, 4 months ago (2014-07-30 22:31:00 UTC) #142
enne (OOO)
The CQ bit was checked by enne@chromium.org
6 years, 4 months ago (2014-07-30 22:36:41 UTC) #143
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/enne@chromium.org/134623005/2000001
6 years, 4 months ago (2014-07-30 22:38:14 UTC) #144
enne (OOO)
The CQ bit was unchecked by enne@chromium.org
6 years, 4 months ago (2014-07-31 00:30:55 UTC) #145
enne (OOO)
Hmm, looks like the linux_chromium_rel content_browsertests "[6:6:0730/161002:171199482597:FATAL:render_widget.cc(648)] Check failed: resize_ack != SEND_RESIZE_ACK || !next_paint_is_resize_ack()" failure ...
6 years, 4 months ago (2014-07-31 00:31:42 UTC) #146
mlamouri (slow - plz ping)
On 2014/07/31 00:31:42, enne wrote: > Hmm, looks like the linux_chromium_rel content_browsertests > "[6:6:0730/161002:171199482597:FATAL:render_widget.cc(648)] Check ...
6 years, 4 months ago (2014-07-31 16:33:59 UTC) #147
enne (OOO)
On 2014/07/31 at 16:33:59, mlamouri wrote: > On 2014/07/31 00:31:42, enne wrote: > > Hmm, ...
6 years, 4 months ago (2014-07-31 17:08:00 UTC) #148
enne (OOO)
The CQ bit was checked by enne@chromium.org
6 years, 4 months ago (2014-07-31 17:08:15 UTC) #149
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/enne@chromium.org/134623005/2020001
6 years, 4 months ago (2014-07-31 17:09:32 UTC) #150
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). The failing builders are: win_chromium_rel on tryserver.chromium.win ...
6 years, 4 months ago (2014-07-31 20:23:12 UTC) #151
enne (OOO)
The CQ bit was unchecked by enne@chromium.org
6 years, 4 months ago (2014-07-31 22:30:03 UTC) #152
enne (OOO)
Hmm. That ScreenOrientation test seems fixed on linux (no more crashing) but is now timing ...
6 years, 4 months ago (2014-07-31 22:30:30 UTC) #153
enne (OOO)
https://codereview.chromium.org/441713002/ appears to fix the Windows timeouts (at least in one win32 and win64 tryjob ...
6 years, 4 months ago (2014-08-04 20:43:53 UTC) #154
danakj
The CQ bit was checked by danakj@chromium.org
6 years, 4 months ago (2014-08-05 13:41:00 UTC) #155
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/enne@chromium.org/134623005/2060001
6 years, 4 months ago (2014-08-05 13:41:50 UTC) #156
danakj
On Mon, Aug 4, 2014 at 4:43 PM, <enne@chromium.org> wrote: > https://codereview.chromium.org/441713002/ appears to fix ...
6 years, 4 months ago (2014-08-05 13:47:49 UTC) #157
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). The failing builders are: win_chromium_rel on tryserver.chromium.win ...
6 years, 4 months ago (2014-08-05 17:47:13 UTC) #158
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 4 months ago (2014-08-05 17:51:13 UTC) #159
commit-bot: I haz the power
Try jobs failed on following builders: win_chromium_rel on tryserver.chromium.win (http://build.chromium.org/p/tryserver.chromium.win/builders/win_chromium_rel/builds/3371)
6 years, 4 months ago (2014-08-05 17:51:18 UTC) #160
danakj
The CQ bit was checked by danakj@chromium.org
6 years, 4 months ago (2014-08-05 17:52:43 UTC) #161
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/enne@chromium.org/134623005/2060001
6 years, 4 months ago (2014-08-05 17:54:33 UTC) #162
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). The failing builders are: win_chromium_rel on tryserver.chromium.win ...
6 years, 4 months ago (2014-08-05 18:05:58 UTC) #163
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 4 months ago (2014-08-05 18:15:45 UTC) #164
commit-bot: I haz the power
Try jobs failed on following builders: win_chromium_rel on tryserver.chromium.win (http://build.chromium.org/p/tryserver.chromium.win/builders/win_chromium_rel/builds/3379)
6 years, 4 months ago (2014-08-05 18:15:49 UTC) #165
enne (OOO)
The CQ bit was checked by enne@chromium.org
6 years, 4 months ago (2014-08-05 18:16:59 UTC) #166
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/enne@chromium.org/134623005/2080001
6 years, 4 months ago (2014-08-05 18:20:50 UTC) #167
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). The failing builders are: win_chromium_rel on tryserver.chromium.win ...
6 years, 4 months ago (2014-08-05 22:25:43 UTC) #168
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 4 months ago (2014-08-06 00:29:30 UTC) #169
commit-bot: I haz the power
Try jobs failed on following builders: win_chromium_rel on tryserver.chromium.win (http://build.chromium.org/p/tryserver.chromium.win/builders/win_chromium_rel/builds/3476)
6 years, 4 months ago (2014-08-06 00:29:33 UTC) #170
danakj
The CQ bit was checked by danakj@chromium.org
6 years, 4 months ago (2014-08-06 02:39:02 UTC) #171
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/enne@chromium.org/134623005/2080001
6 years, 4 months ago (2014-08-06 02:40:58 UTC) #172
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). The failing builders are: win_chromium_rel on tryserver.chromium.win ...
6 years, 4 months ago (2014-08-06 07:21:57 UTC) #173
commit-bot: I haz the power
Change committed as 287747
6 years, 4 months ago (2014-08-06 10:16:53 UTC) #174
Sami
A revert of this CL has been created in https://codereview.chromium.org/448713002/ by skyostil@chromium.org. The reason for ...
6 years, 4 months ago (2014-08-06 15:02:11 UTC) #175
danakj
LLLLLLLLLLLLLLLLLLGTM https://codereview.chromium.org/134623005/diff/2120001/chrome/browser/ui/views/menu_view_drag_and_drop_test.cc File chrome/browser/ui/views/menu_view_drag_and_drop_test.cc (right): https://codereview.chromium.org/134623005/diff/2120001/chrome/browser/ui/views/menu_view_drag_and_drop_test.cc#newcode22 chrome/browser/ui/views/menu_view_drag_and_drop_test.cc:22: #if defined(OS_LINUX) || defined(USE_AURA) OS_LINUX || USE_AURA == ...
6 years, 4 months ago (2014-08-06 20:52:12 UTC) #176
enne (OOO)
Rereopened, rerelanding. https://codereview.chromium.org/134623005/diff/2120001/chrome/browser/ui/views/menu_view_drag_and_drop_test.cc File chrome/browser/ui/views/menu_view_drag_and_drop_test.cc (right): https://codereview.chromium.org/134623005/diff/2120001/chrome/browser/ui/views/menu_view_drag_and_drop_test.cc#newcode22 chrome/browser/ui/views/menu_view_drag_and_drop_test.cc:22: #if defined(OS_LINUX) || defined(USE_AURA) On 2014/08/06 20:52:12, ...
6 years, 4 months ago (2014-08-06 20:54:42 UTC) #177
enne (OOO)
The CQ bit was checked by enne@chromium.org
6 years, 4 months ago (2014-08-06 20:55:25 UTC) #178
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/enne@chromium.org/134623005/2140001
6 years, 4 months ago (2014-08-06 20:57:38 UTC) #179
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). The failing builders are: mac_chromium_rel on tryserver.chromium.mac ...
6 years, 4 months ago (2014-08-07 01:20:28 UTC) #180
commit-bot: I haz the power
Change committed as 287950
6 years, 4 months ago (2014-08-07 03:15:52 UTC) #181
tkent
On 2014/08/07 03:15:52, I haz the power (commit-bot) wrote: > Change committed as 287950 Some ...
6 years, 4 months ago (2014-08-07 05:26:48 UTC) #182
tkent
A revert of this CL has been created in https://codereview.chromium.org/447133002/ by tkent@chromium.org. The reason for ...
6 years, 4 months ago (2014-08-07 05:27:29 UTC) #183
danakj
Not the greatest stacktrace from the linux debug bot: 22:35:50.328 984 worker/6 fast/dom/Window/new-window-opener.html crashed, (stderr ...
6 years, 4 months ago (2014-08-07 13:05:52 UTC) #184
danakj
Hm, this seemed to cause a commit to happen while the OS was still lost ...
6 years, 4 months ago (2014-08-07 15:01:43 UTC) #185
danakj
ScheduledActionSendBeginMainFrame posts the BeginMainFrame. Maybe the LostContext callback was previously posted and handled in between? ...
6 years, 4 months ago (2014-08-07 15:10:37 UTC) #186
enne (OOO)
LayoutTests should be fixed with https://codereview.chromium.org/453523002. It was hitting an assert that had changed only ...
6 years, 4 months ago (2014-08-07 20:39:10 UTC) #187
enne (OOO)
danakj: r? cq? https://codereview.chromium.org/134623005/diff/2180001/cc/trees/layer_tree_host_unittest.cc File cc/trees/layer_tree_host_unittest.cc (left): https://codereview.chromium.org/134623005/diff/2180001/cc/trees/layer_tree_host_unittest.cc#oldcode697 cc/trees/layer_tree_host_unittest.cc:697: class LayerTreeHostTestAbortFrameWhenInvisible : public LayerTreeHostTest { ...
6 years, 4 months ago (2014-08-09 00:04:43 UTC) #188
danakj
https://codereview.chromium.org/134623005/diff/2180001/cc/BUILD.gn File cc/BUILD.gn (right): https://codereview.chromium.org/134623005/diff/2180001/cc/BUILD.gn#newcode454 cc/BUILD.gn:454: "trees/scoped_swap_promise_checker.h", I don't see this file.
6 years, 4 months ago (2014-08-10 12:36:09 UTC) #189
danakj
On 2014/08/10 12:36:09, danakj wrote: > https://codereview.chromium.org/134623005/diff/2180001/cc/BUILD.gn > File cc/BUILD.gn (right): > > https://codereview.chromium.org/134623005/diff/2180001/cc/BUILD.gn#newcode454 > ...
6 years, 4 months ago (2014-08-10 12:44:42 UTC) #190
enne (OOO)
On 2014/08/10 at 12:44:42, danakj wrote: > R+ LGTM Once you add the file. Since ...
6 years, 4 months ago (2014-08-11 17:12:53 UTC) #191
enne (OOO)
The CQ bit was checked by enne@chromium.org
6 years, 4 months ago (2014-08-11 17:13:17 UTC) #192
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/enne@chromium.org/134623005/2210001
6 years, 4 months ago (2014-08-11 17:15:57 UTC) #193
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). The failing builders are: win_chromium_x64_rel on tryserver.chromium.win ...
6 years, 4 months ago (2014-08-11 20:02:04 UTC) #194
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 4 months ago (2014-08-11 20:08:38 UTC) #195
commit-bot: I haz the power
Try jobs failed on following builders: win_chromium_x64_rel on tryserver.chromium.win (http://build.chromium.org/p/tryserver.chromium.win/builders/win_chromium_x64_rel/builds/5532)
6 years, 4 months ago (2014-08-11 20:08:42 UTC) #196
enne (OOO)
The CQ bit was checked by enne@chromium.org
6 years, 4 months ago (2014-08-11 20:55:49 UTC) #197
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/enne@chromium.org/134623005/2210001
6 years, 4 months ago (2014-08-11 20:57:12 UTC) #198
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). The failing builders are: win_chromium_x64_rel on tryserver.chromium.win ...
6 years, 4 months ago (2014-08-11 21:05:02 UTC) #199
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 4 months ago (2014-08-11 21:12:42 UTC) #200
commit-bot: I haz the power
Try jobs failed on following builders: win_chromium_x64_rel on tryserver.chromium.win (http://build.chromium.org/p/tryserver.chromium.win/builders/win_chromium_x64_rel/builds/5565)
6 years, 4 months ago (2014-08-11 21:12:45 UTC) #201
enne (OOO)
The CQ bit was checked by enne@chromium.org
6 years, 4 months ago (2014-08-11 22:05:02 UTC) #202
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/enne@chromium.org/134623005/2230001
6 years, 4 months ago (2014-08-11 22:06:40 UTC) #203
commit-bot: I haz the power
Change committed as 288866
6 years, 4 months ago (2014-08-12 01:43:24 UTC) #204
danakj
https://codereview.chromium.org/134623005/diff/2230001/content/renderer/render_widget.cc File content/renderer/render_widget.cc (right): https://codereview.chromium.org/134623005/diff/2230001/content/renderer/render_widget.cc#newcode396 content/renderer/render_widget.cc:396: host_closing_(false), This var could exist #if DCHECK_IS_ON https://codereview.chromium.org/134623005/diff/2230001/content/renderer/render_widget.cc#newcode1217 content/renderer/render_widget.cc:1217: ...
6 years, 4 months ago (2014-08-13 18:30:20 UTC) #205
enne (OOO)
Ok, round 6 of this patch. For sanity reasons, I've removed all of the changes ...
6 years, 4 months ago (2014-08-22 00:48:54 UTC) #206
danakj
WOO! LGTM!
6 years, 4 months ago (2014-08-22 00:56:39 UTC) #207
dneto
On 2014/08/22 00:56:39, danakj wrote: > WOO! LGTM! Please go ahead and don't worry about ...
6 years, 4 months ago (2014-08-22 13:44:34 UTC) #208
enne (OOO)
The CQ bit was checked by enne@chromium.org
6 years, 4 months ago (2014-08-22 17:03:29 UTC) #209
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/enne@chromium.org/134623005/2290001
6 years, 4 months ago (2014-08-22 17:04:46 UTC) #210
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). The failing builders are: android_chromium_gn_compile_rel on tryserver.chromium.linux ...
6 years, 4 months ago (2014-08-22 18:06:55 UTC) #211
commit-bot: I haz the power
6 years, 4 months ago (2014-08-22 18:16:38 UTC) #212
Message was sent while issue was closed.
Committed patchset #76 (2290001) as 291451

Powered by Google App Engine
This is Rietveld 408576698