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

Issue 1000503002: Add BeginFrameObserverProxy (Closed)

Created:
5 years, 9 months ago by simonhong
Modified:
5 years, 9 months ago
CC:
chromium-reviews, yusukes+watch_chromium.org, yukishiino+watch_chromium.org, Ian Vollick, jam, penghuang+watch_chromium.org, sievers+watch_chromium.org, jbauman+watch_chromium.org, nona+watch_chromium.org, darin-cc_chromium.org, kalyank, piman+watch_chromium.org, cc-bugs_chromium.org, James Su, scheduler-bugs_chromium.org, danakj+watch_chromium.org, miu+watch_chromium.org
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Add BeginFrameObserverProxy This is partial cl from https://codereview.chromium.org/775143003/ for easy review. In this cl, BeginFrameObserverProxy is implemented to handle BeginFrame message for RWHV. In the follow-up patch, RWHVAura will own it and inherit BeginframeObserverProxyClient. R=brianderson@chromium.org, danakj@chromium.org BUG=372086 TEST=compositor_unittests, content_unittests Committed: https://crrev.com/8af4c8355523e6ddf4d89ba03116b3650234b604 Cr-Commit-Position: refs/heads/master@{#321686}

Patch Set 1 #

Total comments: 4

Patch Set 2 : #

Total comments: 6

Patch Set 3 : #

Patch Set 4 : #

Total comments: 8

Patch Set 5 : #

Patch Set 6 : #

Patch Set 7 : #

Patch Set 8 : #

Total comments: 13

Patch Set 9 : #

Patch Set 10 : #

Patch Set 11 : Add BeginFrameManager #

Total comments: 24

Patch Set 12 : #

Patch Set 13 : #

Total comments: 26

Patch Set 14 : WIP #

Patch Set 15 : #

Patch Set 16 : #

Total comments: 5

Patch Set 17 : #

Total comments: 2

Patch Set 18 : #

Total comments: 4

Patch Set 19 : Rename to BeginFrameObserverProxy #

Unified diffs Side-by-side diffs Delta from patch set Stats (+340 lines, -0 lines) Patch
A content/browser/renderer_host/begin_frame_observer_proxy.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1 chunk +60 lines, -0 lines 0 comments Download
A content/browser/renderer_host/begin_frame_observer_proxy.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1 chunk +70 lines, -0 lines 0 comments Download
A content/browser/renderer_host/begin_frame_observer_proxy_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1 chunk +97 lines, -0 lines 0 comments Download
M content/content_browser.gypi View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 chunks +3 lines, -0 lines 0 comments Download
M content/content_tests.gypi View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 chunks +2 lines, -0 lines 0 comments Download
M ui/compositor/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 1 chunk +1 line, -0 lines 0 comments Download
M ui/compositor/compositor.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 7 chunks +17 lines, -0 lines 0 comments Download
M ui/compositor/compositor.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 3 chunks +37 lines, -0 lines 0 comments Download
M ui/compositor/compositor.gyp View 1 2 3 4 5 6 7 8 9 10 1 chunk +1 line, -0 lines 0 comments Download
M ui/compositor/compositor_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 2 chunks +52 lines, -0 lines 0 comments Download

Messages

Total messages: 36 (3 generated)
simonhong
This is separated patch from https://codereview.chromium.org/775143003/. PTAL!
5 years, 9 months ago (2015-03-10 22:45:29 UTC) #1
brianderson
https://codereview.chromium.org/1000503002/diff/1/content/browser/renderer_host/render_widget_host_view_mac.h File content/browser/renderer_host/render_widget_host_view_mac.h (right): https://codereview.chromium.org/1000503002/diff/1/content/browser/renderer_host/render_widget_host_view_mac.h#newcode482 content/browser/renderer_host/render_widget_host_view_mac.h:482: const cc::BeginFrameArgs& args) override; Accidental change? https://codereview.chromium.org/1000503002/diff/1/ui/compositor/compositor.cc File ui/compositor/compositor.cc ...
5 years, 9 months ago (2015-03-10 23:36:47 UTC) #2
brianderson
https://codereview.chromium.org/1000503002/diff/20001/content/browser/compositor/delegated_frame_host_unittest.cc File content/browser/compositor/delegated_frame_host_unittest.cc (right): https://codereview.chromium.org/1000503002/diff/20001/content/browser/compositor/delegated_frame_host_unittest.cc#newcode73 content/browser/compositor/delegated_frame_host_unittest.cc:73: bool begin_frame_sended_; sended -> sent https://codereview.chromium.org/1000503002/diff/20001/content/browser/compositor/delegated_frame_host_unittest.cc#newcode114 content/browser/compositor/delegated_frame_host_unittest.cc:114: DCHECK(!client.begin_frame_sended()); EXPECT_TRUE ...
5 years, 9 months ago (2015-03-10 23:45:41 UTC) #3
simonhong
Brian, all comments are addressed. Thanks for review. https://codereview.chromium.org/1000503002/diff/1/content/browser/renderer_host/render_widget_host_view_mac.h File content/browser/renderer_host/render_widget_host_view_mac.h (right): https://codereview.chromium.org/1000503002/diff/1/content/browser/renderer_host/render_widget_host_view_mac.h#newcode482 content/browser/renderer_host/render_widget_host_view_mac.h:482: const ...
5 years, 9 months ago (2015-03-11 02:03:37 UTC) #4
brianderson
Looks like you need to fix a few compile errors related to the removal of ...
5 years, 9 months ago (2015-03-11 02:17:57 UTC) #5
simonhong
On 2015/03/11 02:17:57, brianderson wrote: > Looks like you need to fix a few compile ...
5 years, 9 months ago (2015-03-11 02:44:03 UTC) #6
brianderson
lgtm +sievers for owners review of content +mithro in case he has any general feedback. ...
5 years, 9 months ago (2015-03-11 03:11:54 UTC) #8
mithro-old
Hi Simon, Generally, this CL looks good. Just some comments on the tests involved. Tim ...
5 years, 9 months ago (2015-03-11 03:42:58 UTC) #9
simonhong
https://codereview.chromium.org/1000503002/diff/60001/content/browser/compositor/delegated_frame_host_unittest.cc File content/browser/compositor/delegated_frame_host_unittest.cc (right): https://codereview.chromium.org/1000503002/diff/60001/content/browser/compositor/delegated_frame_host_unittest.cc#newcode20 content/browser/compositor/delegated_frame_host_unittest.cc:20: class FakeTaskRunner : public base::SingleThreadTaskRunner { On 2015/03/11 03:42:58, ...
5 years, 9 months ago (2015-03-11 16:27:47 UTC) #10
danakj
https://codereview.chromium.org/1000503002/diff/140001/cc/scheduler/scheduler.cc File cc/scheduler/scheduler.cc (right): https://codereview.chromium.org/1000503002/diff/140001/cc/scheduler/scheduler.cc#newcode383 cc/scheduler/scheduler.cc:383: if (state_machine_.children_need_begin_frames()) { If this patch isn't enabling stuff, ...
5 years, 9 months ago (2015-03-13 17:57:11 UTC) #11
danakj
https://codereview.chromium.org/1000503002/diff/140001/content/browser/compositor/delegated_frame_host.cc File content/browser/compositor/delegated_frame_host.cc (right): https://codereview.chromium.org/1000503002/diff/140001/content/browser/compositor/delegated_frame_host.cc#newcode943 content/browser/compositor/delegated_frame_host.cc:943: void DelegatedFrameHost::OnSendBeginFrame(const cc::BeginFrameArgs& args) { This code seems entirely ...
5 years, 9 months ago (2015-03-13 20:04:40 UTC) #12
no sievers
https://codereview.chromium.org/1000503002/diff/140001/content/browser/compositor/delegated_frame_host.h File content/browser/compositor/delegated_frame_host.h (right): https://codereview.chromium.org/1000503002/diff/140001/content/browser/compositor/delegated_frame_host.h#newcode353 content/browser/compositor/delegated_frame_host.h:353: // True when unified BeginFrame scheduing is used. nit: ...
5 years, 9 months ago (2015-03-13 20:30:54 UTC) #13
brianderson
https://codereview.chromium.org/1000503002/diff/140001/content/browser/compositor/delegated_frame_host.h File content/browser/compositor/delegated_frame_host.h (right): https://codereview.chromium.org/1000503002/diff/140001/content/browser/compositor/delegated_frame_host.h#newcode353 content/browser/compositor/delegated_frame_host.h:353: // True when unified BeginFrame scheduing is used. On ...
5 years, 9 months ago (2015-03-13 20:53:52 UTC) #14
simonhong
I added BeginFrameManager for handling BeginFrame message instead of DelegatedFrameHost. RWHVAura will own it and ...
5 years, 9 months ago (2015-03-17 16:11:34 UTC) #15
danakj
https://codereview.chromium.org/1000503002/diff/200001/content/browser/renderer_host/begin_frame_manager.cc File content/browser/renderer_host/begin_frame_manager.cc (right): https://codereview.chromium.org/1000503002/diff/200001/content/browser/renderer_host/begin_frame_manager.cc#newcode17 content/browser/renderer_host/begin_frame_manager.cc:17: void BeginFrameManager::OnSetNeedsBeginFrames(bool needs_begin_frames) { This looks like it should ...
5 years, 9 months ago (2015-03-17 18:56:46 UTC) #16
brianderson
https://codereview.chromium.org/1000503002/diff/200001/content/browser/renderer_host/begin_frame_manager.h File content/browser/renderer_host/begin_frame_manager.h (right): https://codereview.chromium.org/1000503002/diff/200001/content/browser/renderer_host/begin_frame_manager.h#newcode27 content/browser/renderer_host/begin_frame_manager.h:27: class CONTENT_EXPORT BeginFrameManager BeginFrameManager is a somewhat ambiguous name. ...
5 years, 9 months ago (2015-03-17 22:29:32 UTC) #17
simonhong
https://codereview.chromium.org/1000503002/diff/200001/content/browser/renderer_host/begin_frame_manager.cc File content/browser/renderer_host/begin_frame_manager.cc (right): https://codereview.chromium.org/1000503002/diff/200001/content/browser/renderer_host/begin_frame_manager.cc#newcode17 content/browser/renderer_host/begin_frame_manager.cc:17: void BeginFrameManager::OnSetNeedsBeginFrames(bool needs_begin_frames) { On 2015/03/17 18:56:45, danakj wrote: ...
5 years, 9 months ago (2015-03-19 15:48:46 UTC) #18
danakj
https://codereview.chromium.org/1000503002/diff/240001/content/browser/renderer_host/compositor_begin_frame_observer_impl.cc File content/browser/renderer_host/compositor_begin_frame_observer_impl.cc (right): https://codereview.chromium.org/1000503002/diff/240001/content/browser/renderer_host/compositor_begin_frame_observer_impl.cc#newcode42 content/browser/renderer_host/compositor_begin_frame_observer_impl.cc:42: less whitespace? https://codereview.chromium.org/1000503002/diff/240001/content/browser/renderer_host/compositor_begin_frame_observer_impl.cc#newcode53 content/browser/renderer_host/compositor_begin_frame_observer_impl.cc:53: dittos https://codereview.chromium.org/1000503002/diff/240001/content/browser/renderer_host/compositor_begin_frame_observer_impl.h File content/browser/renderer_host/compositor_begin_frame_observer_impl.h (right): ...
5 years, 9 months ago (2015-03-19 22:36:41 UTC) #19
brianderson
https://codereview.chromium.org/1000503002/diff/240001/ui/compositor/compositor.cc File ui/compositor/compositor.cc (right): https://codereview.chromium.org/1000503002/diff/240001/ui/compositor/compositor.cc#newcode293 ui/compositor/compositor.cc:293: if (last_begin_frame_args_sent_to_observer.frame_time != Now that there's a shared CompositorBeginFrameObserverImpl ...
5 years, 9 months ago (2015-03-19 22:48:59 UTC) #20
simonhong
All comments are addressed. brian, dana gave an opinion about the name of CompositorBeginFrameObserverImpl. Making ...
5 years, 9 months ago (2015-03-20 16:07:36 UTC) #21
danakj
https://codereview.chromium.org/1000503002/diff/300001/content/browser/renderer_host/compositor_begin_frame_observer_impl.cc File content/browser/renderer_host/compositor_begin_frame_observer_impl.cc (right): https://codereview.chromium.org/1000503002/diff/300001/content/browser/renderer_host/compositor_begin_frame_observer_impl.cc#newcode57 content/browser/renderer_host/compositor_begin_frame_observer_impl.cc:57: if (last_sent_begin_frame_args_.frame_time != args.frame_time) Ya this is what I ...
5 years, 9 months ago (2015-03-20 16:46:11 UTC) #22
danakj
On 2015/03/20 16:07:36, simonhong wrote: > All comments are addressed. > > brian, dana gave ...
5 years, 9 months ago (2015-03-20 16:48:50 UTC) #23
simonhong
I think BeginFrameProxy sounds good :) https://codereview.chromium.org/1000503002/diff/300001/content/browser/renderer_host/compositor_begin_frame_observer_impl.h File content/browser/renderer_host/compositor_begin_frame_observer_impl.h (right): https://codereview.chromium.org/1000503002/diff/300001/content/browser/renderer_host/compositor_begin_frame_observer_impl.h#newcode49 content/browser/renderer_host/compositor_begin_frame_observer_impl.h:49: // Pass |last_sent_begin_frame_args_| ...
5 years, 9 months ago (2015-03-20 17:24:14 UTC) #24
danakj
LGTM https://codereview.chromium.org/1000503002/diff/320001/ui/compositor/compositor_unittest.cc File ui/compositor/compositor_unittest.cc (right): https://codereview.chromium.org/1000503002/diff/320001/ui/compositor/compositor_unittest.cc#newcode113 ui/compositor/compositor_unittest.cc:113: compositor()->RemoveBeginFrameObserver(&test_observer); it's already removed here right?
5 years, 9 months ago (2015-03-20 17:28:05 UTC) #25
simonhong
https://codereview.chromium.org/1000503002/diff/320001/ui/compositor/compositor_unittest.cc File ui/compositor/compositor_unittest.cc (right): https://codereview.chromium.org/1000503002/diff/320001/ui/compositor/compositor_unittest.cc#newcode113 ui/compositor/compositor_unittest.cc:113: compositor()->RemoveBeginFrameObserver(&test_observer); On 2015/03/20 17:28:05, danakj wrote: > it's already ...
5 years, 9 months ago (2015-03-20 17:35:56 UTC) #26
danakj
On Fri, Mar 20, 2015 at 10:28 AM, <danakj@chromium.org> wrote: > LGTM > % naming ...
5 years, 9 months ago (2015-03-20 17:36:52 UTC) #27
brianderson
BeginFrameObserverProxy, then lgtm!
5 years, 9 months ago (2015-03-20 22:33:37 UTC) #28
no sievers
lgtm https://codereview.chromium.org/1000503002/diff/340001/content/browser/renderer_host/compositor_begin_frame_observer_impl.h File content/browser/renderer_host/compositor_begin_frame_observer_impl.h (right): https://codereview.chromium.org/1000503002/diff/340001/content/browser/renderer_host/compositor_begin_frame_observer_impl.h#newcode32 content/browser/renderer_host/compositor_begin_frame_observer_impl.h:32: virtual ~CompositorBeginFrameObserverImpl(); nit: override instead of virtual https://codereview.chromium.org/1000503002/diff/340001/content/content_browser.gypi ...
5 years, 9 months ago (2015-03-20 22:45:21 UTC) #29
simonhong
https://codereview.chromium.org/1000503002/diff/340001/content/content_browser.gypi File content/content_browser.gypi (right): https://codereview.chromium.org/1000503002/diff/340001/content/content_browser.gypi#newcode1896 content/content_browser.gypi:1896: 'browser/renderer_host/compositor_begin_frame_observer_impl.cc', On 2015/03/20 22:45:21, sievers wrote: > nit: Does ...
5 years, 9 months ago (2015-03-20 23:01:48 UTC) #30
no sievers
On 2015/03/20 23:01:48, simonhong wrote: > https://codereview.chromium.org/1000503002/diff/340001/content/content_browser.gypi > File content/content_browser.gypi (right): > > https://codereview.chromium.org/1000503002/diff/340001/content/content_browser.gypi#newcode1896 > ...
5 years, 9 months ago (2015-03-20 23:02:33 UTC) #31
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1000503002/350001
5 years, 9 months ago (2015-03-20 23:33:48 UTC) #34
commit-bot: I haz the power
Committed patchset #19 (id:350001)
5 years, 9 months ago (2015-03-21 07:40:59 UTC) #35
commit-bot: I haz the power
5 years, 9 months ago (2015-03-21 07:41:49 UTC) #36
Message was sent while issue was closed.
Patchset 19 (id:??) landed as
https://crrev.com/8af4c8355523e6ddf4d89ba03116b3650234b604
Cr-Commit-Position: refs/heads/master@{#321686}

Powered by Google App Engine
This is Rietveld 408576698