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

Unified Diff: Source/core/frame/FrameViewAutoSizeInfo.h

Issue 979033005: Oilpan: fix build after r191383 (93780455). (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 10 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
« no previous file with comments | « no previous file | Source/core/frame/FrameViewAutoSizeInfo.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/frame/FrameViewAutoSizeInfo.h
diff --git a/Source/core/frame/FrameViewAutoSizeInfo.h b/Source/core/frame/FrameViewAutoSizeInfo.h
index d022b4cf3fb1f16d33a9b83c23aab153522c6123..7ef98e56f688ecadc29936afc9d938064733538c 100644
--- a/Source/core/frame/FrameViewAutoSizeInfo.h
+++ b/Source/core/frame/FrameViewAutoSizeInfo.h
@@ -18,6 +18,7 @@ class FrameView;
class FrameViewAutoSizeInfo final : public NoBaseWillBeGarbageCollected<FrameViewAutoSizeInfo> {
WTF_MAKE_NONCOPYABLE(FrameViewAutoSizeInfo);
WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED;
+ DECLARE_EMPTY_DESTRUCTOR_WILL_BE_REMOVED(FrameViewAutoSizeInfo);
public:
static PassOwnPtrWillBeRawPtr<FrameViewAutoSizeInfo> create(FrameView* frameView)
{
@@ -27,10 +28,12 @@ public:
void configureAutoSizeMode(const IntSize& minSize, const IntSize& maxSize);
void autoSizeIfNeeded();
+ DECLARE_TRACE();
+
private:
explicit FrameViewAutoSizeInfo(FrameView*);
- FrameView* m_frameView;
+ RawPtrWillBeMember<FrameView> m_frameView;
// The lower bound on the size when autosizing.
IntSize m_minAutoSize;
« no previous file with comments | « no previous file | Source/core/frame/FrameViewAutoSizeInfo.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698