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

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

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (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/SmartClip.h
diff --git a/third_party/WebKit/Source/core/frame/SmartClip.h b/third_party/WebKit/Source/core/frame/SmartClip.h
index 48da0cfd57c246ec5ec362fb3d189f1fb6df8d41..c6417c8c2b27447abde8de8fa80edbbcc7680503 100644
--- a/third_party/WebKit/Source/core/frame/SmartClip.h
+++ b/third_party/WebKit/Source/core/frame/SmartClip.h
@@ -70,7 +70,7 @@ private:
class CORE_EXPORT SmartClip {
STACK_ALLOCATED();
public:
- explicit SmartClip(PassRefPtrWillBeRawPtr<LocalFrame>);
+ explicit SmartClip(RawPtr<LocalFrame>);
SmartClipData dataForRect(const IntRect&);
@@ -80,10 +80,10 @@ private:
Node* minNodeContainsNodes(Node* minNode, Node* newNode);
Node* findBestOverlappingNode(Node*, const IntRect& cropRectInViewport);
bool shouldSkipBackgroundImage(Node*);
- void collectOverlappingChildNodes(Node* parentNode, const IntRect& cropRectInViewport, WillBeHeapVector<RawPtrWillBeMember<Node>>& overlappingNodeInfoTable);
+ void collectOverlappingChildNodes(Node* parentNode, const IntRect& cropRectInViewport, HeapVector<Member<Node>>& overlappingNodeInfoTable);
String extractTextFromNode(Node*);
- RefPtrWillBeMember<LocalFrame> m_frame;
+ Member<LocalFrame> m_frame;
};
} // namespace blink
« no previous file with comments | « third_party/WebKit/Source/core/frame/RootFrameViewportTest.cpp ('k') | third_party/WebKit/Source/core/frame/SmartClip.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698