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

Unified Diff: third_party/WebKit/Source/core/page/PrintContext.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/page/PrintContext.h
diff --git a/third_party/WebKit/Source/core/page/PrintContext.h b/third_party/WebKit/Source/core/page/PrintContext.h
index 7c34503db6290916a8088473d1a97a9141722b09..e45690da175d3a93a5f666dc450bf466dbf00d51 100644
--- a/third_party/WebKit/Source/core/page/PrintContext.h
+++ b/third_party/WebKit/Source/core/page/PrintContext.h
@@ -38,8 +38,7 @@ class GraphicsContext;
class IntRect;
class Node;
-class CORE_EXPORT PrintContext : public NoBaseWillBeGarbageCollectedFinalized<PrintContext> {
- USING_FAST_MALLOC_WILL_BE_REMOVED(PrintContext);
+class CORE_EXPORT PrintContext : public GarbageCollectedFinalized<PrintContext> {
public:
explicit PrintContext(LocalFrame*);
virtual ~PrintContext();
@@ -80,7 +79,7 @@ public:
protected:
void outputLinkedDestinations(GraphicsContext&, const IntRect& pageRect);
- RawPtrWillBeMember<LocalFrame> m_frame;
+ Member<LocalFrame> m_frame;
Vector<IntRect> m_pageRects;
private:
@@ -90,7 +89,7 @@ private:
// Used to prevent misuses of begin() and end() (e.g., call end without begin).
bool m_isPrinting;
- WillBeHeapHashMap<String, RawPtrWillBeMember<Element>> m_linkedDestinations;
+ HeapHashMap<String, Member<Element>> m_linkedDestinations;
bool m_linkedDestinationsValid;
};
« no previous file with comments | « third_party/WebKit/Source/core/page/PointerLockController.cpp ('k') | third_party/WebKit/Source/core/page/PrintContext.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698