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

Side by Side Diff: Source/core/page/ScopedPageLoadDeferrer.h

Issue 955583002: InlinedVisitor: Migrate page to use inlined tracing (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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/core/page/PrintContext.cpp ('k') | Source/core/page/ScopedPageLoadDeferrer.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 /* 1 /*
2 * Copyright (C) 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2008, 2009 Apple Inc. All rights reserved.
3 * 3 *
4 * This library is free software; you can redistribute it and/or 4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public 5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either 6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version. 7 * version 2 of the License, or (at your option) any later version.
8 * 8 *
9 * This library is distributed in the hope that it will be useful, 9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
(...skipping 21 matching lines...) Expand all
32 class ScopedPageLoadDeferrer final : public NoBaseWillBeGarbageCollectedFinalize d<ScopedPageLoadDeferrer> { 32 class ScopedPageLoadDeferrer final : public NoBaseWillBeGarbageCollectedFinalize d<ScopedPageLoadDeferrer> {
33 WTF_MAKE_NONCOPYABLE(ScopedPageLoadDeferrer); 33 WTF_MAKE_NONCOPYABLE(ScopedPageLoadDeferrer);
34 public: 34 public:
35 ScopedPageLoadDeferrer(Page* exclusion = nullptr); 35 ScopedPageLoadDeferrer(Page* exclusion = nullptr);
36 ~ScopedPageLoadDeferrer(); 36 ~ScopedPageLoadDeferrer();
37 37
38 #if ENABLE(OILPAN) 38 #if ENABLE(OILPAN)
39 void dispose(); 39 void dispose();
40 #endif 40 #endif
41 41
42 void trace(Visitor*); 42 DECLARE_TRACE();
43 43
44 private: 44 private:
45 void detach(); 45 void detach();
46 46
47 WillBeHeapVector<RefPtrWillBeMember<LocalFrame>, 16> m_deferredFrames; 47 WillBeHeapVector<RefPtrWillBeMember<LocalFrame>, 16> m_deferredFrames;
48 }; 48 };
49 49
50 } // namespace blink 50 } // namespace blink
51 51
52 #endif // ScopedPageLoadDeferrer_h 52 #endif // ScopedPageLoadDeferrer_h
OLDNEW
« no previous file with comments | « Source/core/page/PrintContext.cpp ('k') | Source/core/page/ScopedPageLoadDeferrer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698