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

Unified Diff: third_party/WebKit/Source/core/frame/Frame.h

Issue 1854543002: Oilpan: Remove WillBe types (part 7) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/frame/Frame.h
diff --git a/third_party/WebKit/Source/core/frame/Frame.h b/third_party/WebKit/Source/core/frame/Frame.h
index 6b751653e9b80974731bc17539d652d951e323a0..d65708a1bfc7cdc17be0eada2d8f361f2106bcf7 100644
--- a/third_party/WebKit/Source/core/frame/Frame.h
+++ b/third_party/WebKit/Source/core/frame/Frame.h
@@ -63,7 +63,7 @@ enum class UserGestureStatus { Active, None };
// Frame is the base class of LocalFrame and RemoteFrame and should only contain
// functionality shared between both. In particular, any method related to
// input, layout, or painting probably belongs on LocalFrame.
-class CORE_EXPORT Frame : public RefCountedWillBeGarbageCollectedFinalized<Frame> {
+class CORE_EXPORT Frame : public GarbageCollectedFinalized<Frame> {
public:
virtual ~Frame();
@@ -138,11 +138,11 @@ protected:
mutable FrameTree m_treeNode;
- RawPtrWillBeMember<FrameHost> m_host;
- RawPtrWillBeMember<FrameOwner> m_owner;
+ Member<FrameHost> m_host;
+ Member<FrameOwner> m_owner;
private:
- RawPtrWillBeMember<FrameClient> m_client;
+ Member<FrameClient> m_client;
// Needed to identify Frame Timing requests.
int64_t m_frameID;
bool m_isLoading;
« no previous file with comments | « third_party/WebKit/Source/core/frame/EventHandlerRegistry.cpp ('k') | third_party/WebKit/Source/core/frame/Frame.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698