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

Side by Side Diff: Source/web/OpenedFrameTracker.h

Issue 594483002: Oilpan: extend tracing over WebFrame trees. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Improve weak callback registration Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « Source/core/loader/FrameLoader.cpp ('k') | Source/web/OpenedFrameTracker.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef OpenedFrameTracker_h 5 #ifndef OpenedFrameTracker_h
6 #define OpenedFrameTracker_h 6 #define OpenedFrameTracker_h
7 7
8 #include "wtf/HashSet.h" 8 #include "wtf/HashSet.h"
9 #include "wtf/Noncopyable.h" 9 #include "wtf/Noncopyable.h"
10 10
11 namespace blink { 11 namespace blink {
12 12
13 class Visitor;
13 class WebFrame; 14 class WebFrame;
14 15
15 // Small helper class to track the set of frames that a WebFrame has opened. 16 // Small helper class to track the set of frames that a WebFrame has opened.
16 // Due to layering restrictions, we need to hide the implementation, since 17 // Due to layering restrictions, we need to hide the implementation, since
17 // public/web/ cannot depend on wtf/. 18 // public/web/ cannot depend on wtf/.
18 class OpenedFrameTracker { 19 class OpenedFrameTracker {
19 WTF_MAKE_NONCOPYABLE(OpenedFrameTracker); 20 WTF_MAKE_NONCOPYABLE(OpenedFrameTracker);
20 public: 21 public:
21 OpenedFrameTracker(); 22 OpenedFrameTracker();
22 ~OpenedFrameTracker(); 23 ~OpenedFrameTracker();
23 24
24 bool isEmpty() const; 25 bool isEmpty() const;
25 void add(WebFrame*); 26 void add(WebFrame*);
26 void remove(WebFrame*); 27 void remove(WebFrame*);
27 28
28 // Updates the opener for all tracked frames. 29 // Updates the opener for all tracked frames.
29 void updateOpener(WebFrame*); 30 void updateOpener(WebFrame*);
30 31
32 void traceFrames(Visitor*);
33
31 private: 34 private:
32 WTF::HashSet<WebFrame*> m_openedFrames; 35 WTF::HashSet<WebFrame*> m_openedFrames;
33 }; 36 };
34 37
35 } // namespace blink 38 } // namespace blink
36 39
37 #endif // WebFramePrivate_h 40 #endif // WebFramePrivate_h
OLDNEW
« no previous file with comments | « Source/core/loader/FrameLoader.cpp ('k') | Source/web/OpenedFrameTracker.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698