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

Issue 1337803002: cc: Adding BeginFrameObserverMap. (Closed)

Created:
5 years, 3 months ago by mithro-old
Modified:
4 years, 10 months ago
Reviewers:
danakj, brianderson
CC:
chromium-reviews, cc-bugs_chromium.org
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

cc: Adding BeginFrameObserverMap. BeginFrameObserverMap is like base::observer_list except it allows the easy storing of data about each observer. Like base::observer_list it is safe to Add/Remove observers while iterating over the map. R=brianderson,danakj CQ_INCLUDE_TRYBOTS=tryserver.blink:linux_blink_rel

Patch Set 1 #

Patch Set 2 : Fixing windows compile. #

Total comments: 2

Patch Set 3 : s/ObserverMap/BeginFrameObserverMap/gc #

Patch Set 4 : Rebase onto master. #

Patch Set 5 : Rebase onto master. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+592 lines, -0 lines) Patch
M cc/BUILD.gn View 1 2 3 2 chunks +2 lines, -0 lines 0 comments Download
M cc/cc.gyp View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M cc/cc_tests.gyp View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
A cc/scheduler/begin_frame_observer_map.h View 1 2 1 chunk +157 lines, -0 lines 0 comments Download
A cc/scheduler/begin_frame_observer_map_unittest.cc View 1 2 1 chunk +431 lines, -0 lines 0 comments Download

Messages

Total messages: 8 (0 generated)
mithro-old
Hi Dana, I continued to bang on the ObserverList stuff in https://codereview.chromium.org/1026233002/ for a while ...
5 years, 3 months ago (2015-09-11 04:22:01 UTC) #1
danakj
https://codereview.chromium.org/1337803002/diff/20001/cc/base/observer_map.h File cc/base/observer_map.h (right): https://codereview.chromium.org/1337803002/diff/20001/cc/base/observer_map.h#newcode13 cc/base/observer_map.h:13: template <class ObserverType, class ObserverDataType> Do you need to ...
5 years, 3 months ago (2015-09-11 17:56:09 UTC) #2
mithro-old
https://codereview.chromium.org/1337803002/diff/20001/cc/base/observer_map.h File cc/base/observer_map.h (right): https://codereview.chromium.org/1337803002/diff/20001/cc/base/observer_map.h#newcode13 cc/base/observer_map.h:13: template <class ObserverType, class ObserverDataType> On 2015/09/11 17:56:09, danakj ...
5 years, 3 months ago (2015-09-11 19:03:57 UTC) #3
mithro-old
I was also wondering if I should be using base/collections/scoped_ptr_hash_map.h rather than a base::hash_map for ...
5 years, 3 months ago (2015-09-11 19:08:17 UTC) #4
danakj
On Fri, Sep 11, 2015 at 12:08 PM, <mithro@mithis.com> wrote: > I was also wondering ...
5 years, 3 months ago (2015-09-11 19:40:17 UTC) #5
danakj
On Fri, Sep 11, 2015 at 12:03 PM, <mithro@mithis.com> wrote: > > > https://codereview.chromium.org/1337803002/diff/20001/cc/base/observer_map.h > ...
5 years, 3 months ago (2015-09-11 19:41:34 UTC) #6
mithro-old
I changed the generic ObserverMap to the BeginFrameObserverMap but didn't change any of the implementation. ...
5 years, 3 months ago (2015-09-11 22:05:44 UTC) #7
brianderson
5 years, 3 months ago (2015-09-12 00:31:30 UTC) #8
Generally agree with Dana's sentiment to only add what we need.

If we add a "WillLoseBeginFrameSource" on the Observer, we'll definitely need
RemoveObserver to support re-entrancy. Not sure we'd need AddObserver to be
re-entrant though.

Powered by Google App Engine
This is Rietveld 408576698