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 2485473003: Remove SurfaceFactory::Create and SurfaceFactory::Destroy (Closed)

Created:
4 years, 1 month ago by Saman Sami
Modified:
4 years ago
CC:
anandc+watch-blimp_chromium.org, bgoldman+watch-blimp_chromium.org, cc-bugs_chromium.org, chromium-reviews, creis+watch_chromium.org, danakj+watch_chromium.org, darin-cc_chromium.org, dtrainor+watch-blimp_chromium.org, gcasto+watch-blimp_chromium.org, jam, jbauman+watch_chromium.org, kalyank, khushalsagar+watch-blimp_chromium.org, kmarshall+watch-blimp_chromium.org, lethalantidote+watch-blimp_chromium.org, maniscalco+watch-blimp_chromium.org, marcinjb+watch-blimp_chromium.org, miu+watch_chromium.org, nasko+codewatch_chromium.org, nyquist+watch-blimp_chromium.org, perumaal+watch-blimp_chromium.org, piman+watch_chromium.org, rjkroege, scf+watch-blimp_chromium.org, shaktisahu+watch-blimp_chromium.org, sriramsr+watch-blimp_chromium.org, steimel+watch-blimp_chromium.org, xjz+watch_chromium.org
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Remove SurfaceFactory::Create and SurfaceFactory::Destroy It is no longer possible to explicitly construct and destroy surfaces. A SurfaceFactory instance now handles only one surface at a time. Once the local frame id passed to SubmitCompositorFrame changes, the factory gets rid of the old surface and creates a new one. BUG=658607 Committed: https://crrev.com/b902fd366ba91757dbee99d5f821f00d2de1d181 Cr-Commit-Position: refs/heads/master@{#432312} CQ_INCLUDE_TRYBOTS=master.tryserver.blink:linux_trusty_blink_rel Committed: https://crrev.com/46b4f407905420c8997e5c886baef4bbf5248b79 Cr-Commit-Position: refs/heads/master@{#434724}

Patch Set 1 #

Patch Set 2 : Android compile error + fixed content/ #

Patch Set 3 : Android compile error #

Patch Set 4 : updated #

Patch Set 5 : up #

Patch Set 6 : rebase #

Patch Set 7 : up #

Patch Set 8 : rebase #

Patch Set 9 : up #

Total comments: 16

Patch Set 10 : Up #

Patch Set 11 : rebase #

Patch Set 12 : up #

Patch Set 13 : Fixed render widget #

Patch Set 14 : fixed exo #

Patch Set 15 : rebase #

Total comments: 4

Patch Set 16 : fixed optional #

Patch Set 17 : Fixed destructors #

Patch Set 18 : up #

Patch Set 19 : up #

Total comments: 23

Patch Set 20 : rename #

Patch Set 21 : rebase #

Total comments: 3

Patch Set 22 : Fixed compile error #

Patch Set 23 : rebase + client #

Patch Set 24 : android compile error #

Patch Set 25 : remove optional #

Patch Set 26 : Fixed cc_unittests #

Patch Set 27 : surface factory test clean up #

Total comments: 7

Patch Set 28 : SetPreviousFrame lint #

Total comments: 20

Patch Set 29 : Get rid of map Remove RequestCopyOfSurface first arg #

Patch Set 30 : compiler error + evictframe #

Patch Set 31 : evict frame #

Patch Set 32 : blimp compile error #

Patch Set 33 : nit #

Patch Set 34 : more evict #

Total comments: 32

Patch Set 35 : up #

Patch Set 36 : dcheck #

Patch Set 37 : perftest #

Patch Set 38 : doc #

Patch Set 39 : doc #

Total comments: 16

Patch Set 40 : up #

Total comments: 1

Patch Set 41 : rebase #

Patch Set 42 : compile error #

Patch Set 43 : test #

Patch Set 44 : test #

Patch Set 45 : fixed windows compile error #

Total comments: 2

Patch Set 46 : up #

Unified diffs Side-by-side diffs Delta from patch set Stats (+459 lines, -483 lines) Patch
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 2 chunks +1 line, -3 lines 0 comments Download
M android_webview/browser/surfaces_instance.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 +1 line, -3 lines 0 comments Download
M blimp/client/core/compositor/blimp_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 4 chunks +3 lines, -6 lines 0 comments Download
M cc/surfaces/direct_compositor_frame_sink.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 3 chunks +2 lines, -7 lines 0 comments Download
M cc/surfaces/display_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 5 chunks +1 line, -7 lines 0 comments Download
M cc/surfaces/surface_aggregator_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 6 chunks +22 lines, -21 lines 0 comments Download
M cc/surfaces/surface_aggregator_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 51 chunks +171 lines, -150 lines 0 comments Download
M cc/surfaces/surface_factory.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 4 chunks +28 lines, -32 lines 0 comments Download
M cc/surfaces/surface_factory.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 2 chunks +52 lines, -64 lines 0 comments Download
M cc/surfaces/surface_factory_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 15 chunks +35 lines, -43 lines 0 comments Download
M cc/surfaces/surface_hittest_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 15 chunks +9 lines, -18 lines 0 comments Download
M cc/surfaces/surface_manager_ref_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 6 chunks +15 lines, -4 lines 0 comments Download
M cc/surfaces/surface_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 +4 lines, -5 lines 0 comments Download
M cc/surfaces/surfaces_pixeltest.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 10 chunks +27 lines, -23 lines 0 comments Download
M cc/test/test_compositor_frame_sink.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 4 chunks +3 lines, -6 lines 0 comments Download
M components/exo/surface.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 2 chunks +1 line, -10 lines 0 comments Download
M content/browser/frame_host/render_widget_host_view_child_frame.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 +16 lines, -17 lines 0 comments Download
M content/browser/frame_host/render_widget_host_view_guest.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 2 chunks +13 lines, -11 lines 0 comments Download
M content/browser/renderer_host/delegated_frame_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 6 chunks +18 lines, -18 lines 0 comments Download
M content/browser/renderer_host/offscreen_canvas_compositor_frame_sink.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 2 chunks +1 line, -2 lines 0 comments Download
M content/renderer/android/synchronous_compositor_frame_sink.h View 1 2 1 chunk +3 lines, -2 lines 0 comments Download
M content/renderer/android/synchronous_compositor_frame_sink.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 7 chunks +30 lines, -23 lines 0 comments Download
M services/ui/surfaces/gpu_compositor_frame_sink.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 2 chunks +1 line, -4 lines 0 comments Download
M ui/android/delegated_frame_host_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 3 chunks +2 lines, -4 lines 0 comments Download

Messages

Total messages: 258 (205 generated)
Fady Samuel
https://codereview.chromium.org/2485473003/diff/160001/cc/surfaces/surface_factory.cc File cc/surfaces/surface_factory.cc (right): https://codereview.chromium.org/2485473003/diff/160001/cc/surfaces/surface_factory.cc#newcode124 cc/surfaces/surface_factory.cc:124: if (client_) Is this necessary? https://codereview.chromium.org/2485473003/diff/160001/cc/surfaces/surface_manager_ref_unittest.cc File cc/surfaces/surface_manager_ref_unittest.cc (right): ...
4 years, 1 month ago (2016-11-08 22:23:59 UTC) #40
Saman Sami
dtrainor@ for blimp/ danakj@ for cc/ piman@ for content/ boliu@ for android_webview/ and content/renderer/android/ sky@ ...
4 years, 1 month ago (2016-11-10 18:15:32 UTC) #93
David Trainor- moved to gerrit
blimp/ lgtm
4 years, 1 month ago (2016-11-10 23:32:33 UTC) #94
Fady Samuel
https://codereview.chromium.org/2485473003/diff/280001/cc/surfaces/surface_factory.h File cc/surfaces/surface_factory.h (right): https://codereview.chromium.org/2485473003/diff/280001/cc/surfaces/surface_factory.h#newcode93 cc/surfaces/surface_factory.h:93: base::Optional<LocalFrameId> last_local_frame_id_; why is this optional? If last_local_frame_id_ isn't ...
4 years, 1 month ago (2016-11-10 23:33:37 UTC) #95
sky
LGTM
4 years, 1 month ago (2016-11-10 23:35:23 UTC) #96
danakj
https://codereview.chromium.org/2485473003/diff/420001/cc/surfaces/direct_compositor_frame_sink.cc File cc/surfaces/direct_compositor_frame_sink.cc (right): https://codereview.chromium.org/2485473003/diff/420001/cc/surfaces/direct_compositor_frame_sink.cc#newcode141 cc/surfaces/direct_compositor_frame_sink.cc:141: if (client_) Should we remove ourselves somehow in DetachFromClient ...
4 years, 1 month ago (2016-11-10 23:57:58 UTC) #97
Fady Samuel
https://codereview.chromium.org/2485473003/diff/420001/cc/surfaces/surface_factory.cc File cc/surfaces/surface_factory.cc (left): https://codereview.chromium.org/2485473003/diff/420001/cc/surfaces/surface_factory.cc#oldcode29 cc/surfaces/surface_factory.cc:29: if (!surface_map_.empty()) { On 2016/11/10 23:57:58, danakj wrote: > ...
4 years, 1 month ago (2016-11-11 00:03:00 UTC) #98
Fady Samuel
https://codereview.chromium.org/2485473003/diff/420001/cc/surfaces/surface_factory.cc File cc/surfaces/surface_factory.cc (left): https://codereview.chromium.org/2485473003/diff/420001/cc/surfaces/surface_factory.cc#oldcode29 cc/surfaces/surface_factory.cc:29: if (!surface_map_.empty()) { On 2016/11/10 23:57:58, danakj wrote: > ...
4 years, 1 month ago (2016-11-11 00:03:01 UTC) #99
danakj
https://codereview.chromium.org/2485473003/diff/420001/cc/surfaces/surface_factory.cc File cc/surfaces/surface_factory.cc (left): https://codereview.chromium.org/2485473003/diff/420001/cc/surfaces/surface_factory.cc#oldcode29 cc/surfaces/surface_factory.cc:29: if (!surface_map_.empty()) { On 2016/11/11 00:03:01, Fady Samuel wrote: ...
4 years, 1 month ago (2016-11-11 00:10:47 UTC) #100
Fady Samuel
On 2016/11/11 00:10:47, danakj wrote: > https://codereview.chromium.org/2485473003/diff/420001/cc/surfaces/surface_factory.cc > File cc/surfaces/surface_factory.cc (left): > > https://codereview.chromium.org/2485473003/diff/420001/cc/surfaces/surface_factory.cc#oldcode29 > ...
4 years, 1 month ago (2016-11-11 00:13:06 UTC) #101
jbauman
https://codereview.chromium.org/2485473003/diff/500001/content/browser/renderer_host/delegated_frame_host.cc File content/browser/renderer_host/delegated_frame_host.cc (right): https://codereview.chromium.org/2485473003/diff/500001/content/browser/renderer_host/delegated_frame_host.cc#newcode596 content/browser/renderer_host/delegated_frame_host.cc:596: if (local_frame_id_.is_valid()) { If you remove the destroy, in ...
4 years, 1 month ago (2016-11-11 03:23:20 UTC) #109
Saman Sami
PTAL https://codereview.chromium.org/2485473003/diff/160001/cc/surfaces/surface_factory.cc File cc/surfaces/surface_factory.cc (right): https://codereview.chromium.org/2485473003/diff/160001/cc/surfaces/surface_factory.cc#newcode124 cc/surfaces/surface_factory.cc:124: if (client_) On 2016/11/08 22:23:59, Fady Samuel wrote: ...
4 years, 1 month ago (2016-11-11 17:49:59 UTC) #132
reveman
components/exo lgtm
4 years, 1 month ago (2016-11-11 17:54:14 UTC) #134
jbauman
On 2016/11/11 17:49:59, Saman Sami wrote: > https://codereview.chromium.org/2485473003/diff/500001/content/browser/renderer_host/delegated_frame_host.cc > File content/browser/renderer_host/delegated_frame_host.cc (right): > > https://codereview.chromium.org/2485473003/diff/500001/content/browser/renderer_host/delegated_frame_host.cc#newcode596 ...
4 years, 1 month ago (2016-11-11 18:06:51 UTC) #135
Fady Samuel
https://codereview.chromium.org/2485473003/diff/500001/content/browser/renderer_host/delegated_frame_host.cc File content/browser/renderer_host/delegated_frame_host.cc (right): https://codereview.chromium.org/2485473003/diff/500001/content/browser/renderer_host/delegated_frame_host.cc#newcode596 content/browser/renderer_host/delegated_frame_host.cc:596: if (local_frame_id_.is_valid()) { On 2016/11/11 17:49:59, Saman Sami wrote: ...
4 years, 1 month ago (2016-11-11 18:12:09 UTC) #136
jbauman
https://codereview.chromium.org/2485473003/diff/620001/components/exo/surface.cc File components/exo/surface.cc (right): https://codereview.chromium.org/2485473003/diff/620001/components/exo/surface.cc#newcode250 components/exo/surface.cc:250: factory_owner_->surface_factory_->Reset(); This will prevent the resources from being returned ...
4 years, 1 month ago (2016-11-11 18:16:48 UTC) #137
Fady Samuel
https://codereview.chromium.org/2485473003/diff/620001/cc/surfaces/surface_factory.cc File cc/surfaces/surface_factory.cc (right): https://codereview.chromium.org/2485473003/diff/620001/cc/surfaces/surface_factory.cc#newcode32 cc/surfaces/surface_factory.cc:32: void SurfaceFactory::DestroyAll() { Rename this to EvictFrame and make ...
4 years, 1 month ago (2016-11-11 19:02:20 UTC) #140
Fady Samuel
https://codereview.chromium.org/2485473003/diff/640001/android_webview/browser/surfaces_instance.cc File android_webview/browser/surfaces_instance.cc (right): https://codereview.chromium.org/2485473003/diff/640001/android_webview/browser/surfaces_instance.cc#newcode88 android_webview/browser/surfaces_instance.cc:88: surface_factory_.reset(); surface_factory_->EvictFrame(); https://codereview.chromium.org/2485473003/diff/640001/cc/surfaces/direct_compositor_frame_sink.cc File cc/surfaces/direct_compositor_frame_sink.cc (right): https://codereview.chromium.org/2485473003/diff/640001/cc/surfaces/direct_compositor_frame_sink.cc#newcode85 cc/surfaces/direct_compositor_frame_sink.cc:85: factory_.Reset(); ...
4 years, 1 month ago (2016-11-11 19:47:57 UTC) #143
Fady Samuel
https://codereview.chromium.org/2485473003/diff/640001/cc/surfaces/surface_factory.h File cc/surfaces/surface_factory.h (right): https://codereview.chromium.org/2485473003/diff/640001/cc/surfaces/surface_factory.h#newcode102 cc/surfaces/surface_factory.h:102: OwningSurfaceMap surface_map_; Replace this with: std::unique_ptr<Surface> active_surface_;
4 years, 1 month ago (2016-11-11 19:49:04 UTC) #144
Saman Sami
PTAL All reviewers' suggestions should be applied. https://codereview.chromium.org/2485473003/diff/620001/components/exo/surface.cc File components/exo/surface.cc (right): https://codereview.chromium.org/2485473003/diff/620001/components/exo/surface.cc#newcode250 components/exo/surface.cc:250: factory_owner_->surface_factory_->Reset(); On ...
4 years, 1 month ago (2016-11-11 22:28:09 UTC) #157
Fady Samuel
Thank you Saman for pushing this through this far! This is a hard patch to ...
4 years, 1 month ago (2016-11-11 22:36:00 UTC) #158
boliu
https://codereview.chromium.org/2485473003/diff/750001/content/browser/frame_host/render_widget_host_view_child_frame.cc File content/browser/frame_host/render_widget_host_view_child_frame.cc (right): https://codereview.chromium.org/2485473003/diff/750001/content/browser/frame_host/render_widget_host_view_child_frame.cc#newcode407 content/browser/frame_host/render_widget_host_view_child_frame.cc:407: cc::SurfaceFactory::DrawCallback ack_callback = any reason why this is moved ...
4 years, 1 month ago (2016-11-11 23:50:45 UTC) #161
Fady Samuel
https://codereview.chromium.org/2485473003/diff/750001/content/browser/frame_host/render_widget_host_view_child_frame.cc File content/browser/frame_host/render_widget_host_view_child_frame.cc (right): https://codereview.chromium.org/2485473003/diff/750001/content/browser/frame_host/render_widget_host_view_child_frame.cc#newcode407 content/browser/frame_host/render_widget_host_view_child_frame.cc:407: cc::SurfaceFactory::DrawCallback ack_callback = On 2016/11/11 23:50:44, boliu wrote: > ...
4 years, 1 month ago (2016-11-11 23:57:33 UTC) #162
piman
https://codereview.chromium.org/2485473003/diff/750001/cc/surfaces/surface_factory.cc File cc/surfaces/surface_factory.cc (right): https://codereview.chromium.org/2485473003/diff/750001/cc/surfaces/surface_factory.cc#newcode78 cc/surfaces/surface_factory.cc:78: surface->SetPreviousFrameSurface(current_surface_.get()); I think doing this implicitly makes sense, but ...
4 years, 1 month ago (2016-11-12 00:19:10 UTC) #163
danakj
https://codereview.chromium.org/2485473003/diff/750001/cc/surfaces/surface_aggregator_perftest.cc File cc/surfaces/surface_aggregator_perftest.cc (left): https://codereview.chromium.org/2485473003/diff/750001/cc/surfaces/surface_aggregator_perftest.cc#oldcode102 cc/surfaces/surface_aggregator_perftest.cc:102: factory_.Create(LocalFrameId(num_surfaces + 1, kArbitraryToken)); nit: I think this would ...
4 years, 1 month ago (2016-11-12 00:27:22 UTC) #164
Saman Sami
PTAL All suggestions are applied. Some tests might fail, but that'll be only because of ...
4 years, 1 month ago (2016-11-14 23:39:02 UTC) #175
danakj
Please wrap your CL description at 72 chars: http://chris.beams.io/posts/git-commit/ LGTM % piman's concerns with damage ...
4 years, 1 month ago (2016-11-15 00:43:41 UTC) #176
Fady Samuel
https://codereview.chromium.org/2485473003/diff/840001/cc/surfaces/surface_factory.cc File cc/surfaces/surface_factory.cc (right): https://codereview.chromium.org/2485473003/diff/840001/cc/surfaces/surface_factory.cc#newcode67 cc/surfaces/surface_factory.cc:67: if (!surface->HasFrame()) { nit: This check seems redundant at ...
4 years, 1 month ago (2016-11-15 12:46:51 UTC) #179
Saman Sami
PTAL In addition to fixing the last set of problems, I tested resizing chrome on ...
4 years, 1 month ago (2016-11-15 21:12:19 UTC) #186
piman
lgtm
4 years, 1 month ago (2016-11-15 21:33:07 UTC) #187
boliu
lgtm
4 years, 1 month ago (2016-11-15 21:36:30 UTC) #188
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2485473003/880001
4 years, 1 month ago (2016-11-15 21:39:36 UTC) #191
commit-bot: I haz the power
Try jobs failed on following builders: cast_shell_linux on master.tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/cast_shell_linux/builds/261088)
4 years, 1 month ago (2016-11-15 21:50:44 UTC) #193
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2485473003/880001
4 years, 1 month ago (2016-11-15 22:04:12 UTC) #195
commit-bot: I haz the power
Try jobs failed on following builders: cast_shell_linux on master.tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/cast_shell_linux/builds/261154)
4 years, 1 month ago (2016-11-15 22:31:19 UTC) #197
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2485473003/880001
4 years, 1 month ago (2016-11-15 22:39:50 UTC) #199
commit-bot: I haz the power
Try jobs failed on following builders: cast_shell_linux on master.tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/cast_shell_linux/builds/261276)
4 years, 1 month ago (2016-11-15 23:12:22 UTC) #201
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2485473003/880001
4 years, 1 month ago (2016-11-15 23:18:46 UTC) #203
commit-bot: I haz the power
Try jobs failed on following builders: cast_shell_linux on master.tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/cast_shell_linux/builds/261353)
4 years, 1 month ago (2016-11-15 23:36:26 UTC) #205
boliu
On 2016/11/15 23:36:26, commit-bot: I haz the power wrote: > Try jobs failed on following ...
4 years, 1 month ago (2016-11-15 23:38:13 UTC) #206
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2485473003/880001
4 years, 1 month ago (2016-11-16 00:05:46 UTC) #208
commit-bot: I haz the power
Committed patchset #40 (id:880001)
4 years, 1 month ago (2016-11-16 00:25:40 UTC) #210
commit-bot: I haz the power
Patchset 40 (id:??) landed as https://crrev.com/b902fd366ba91757dbee99d5f821f00d2de1d181 Cr-Commit-Position: refs/heads/master@{#432312}
4 years, 1 month ago (2016-11-16 00:28:22 UTC) #212
suzyh_UTC10 (ex-contributor)
A revert of this CL (patchset #40 id:880001) has been created in https://codereview.chromium.org/2506883002/ by suzyh@chromium.org. ...
4 years, 1 month ago (2016-11-16 03:06:14 UTC) #213
Fady Samuel
https://codereview.chromium.org/2485473003/diff/880001/cc/surfaces/surface_aggregator_perftest.cc File cc/surfaces/surface_aggregator_perftest.cc (right): https://codereview.chromium.org/2485473003/diff/880001/cc/surfaces/surface_aggregator_perftest.cc#newcode50 cc/surfaces/surface_aggregator_perftest.cc:50: std::unique_ptr<SurfaceFactory> child_factories[num_surfaces]; Dynamically sized arrays on the stack is ...
4 years, 1 month ago (2016-11-16 03:12:00 UTC) #214
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2485473003/980001
4 years, 1 month ago (2016-11-21 19:37:10 UTC) #238
Fady Samuel
https://codereview.chromium.org/2485473003/diff/980001/content/browser/renderer_host/delegated_frame_host.cc File content/browser/renderer_host/delegated_frame_host.cc (right): https://codereview.chromium.org/2485473003/diff/980001/content/browser/renderer_host/delegated_frame_host.cc#newcode481 content/browser/renderer_host/delegated_frame_host.cc:481: surface_factory_->SubmitCompositorFrame( Please don't land this. This is not the ...
4 years, 1 month ago (2016-11-21 21:00:16 UTC) #239
Fady Samuel
https://codereview.chromium.org/2485473003/diff/980001/cc/surfaces/surface_factory.cc File cc/surfaces/surface_factory.cc (right): https://codereview.chromium.org/2485473003/diff/980001/cc/surfaces/surface_factory.cc#newcode41 cc/surfaces/surface_factory.cc:41: current_surface_.reset(); nit: this is unnecessary because you moved current_surface_ ...
4 years, 1 month ago (2016-11-22 20:31:01 UTC) #241
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2485473003/1000001
4 years ago (2016-11-28 18:44:50 UTC) #250
commit-bot: I haz the power
Try jobs failed on following builders: chromium_presubmit on master.tryserver.chromium.linux (JOB_TIMED_OUT, no build URL)
4 years ago (2016-11-28 20:46:37 UTC) #252
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2485473003/1000001
4 years ago (2016-11-28 21:24:22 UTC) #254
commit-bot: I haz the power
Committed patchset #46 (id:1000001)
4 years ago (2016-11-28 21:47:48 UTC) #256
commit-bot: I haz the power
4 years ago (2016-11-28 21:51:54 UTC) #258
Message was sent while issue was closed.
Patchset 46 (id:??) landed as
https://crrev.com/46b4f407905420c8997e5c886baef4bbf5248b79
Cr-Commit-Position: refs/heads/master@{#434724}

Powered by Google App Engine
This is Rietveld 408576698