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

Unified Diff: Source/core/inspector/InspectorResourceContentLoader.h

Issue 563703002: Oilpan: Enable oilpan for callback classes (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 3 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: Source/core/inspector/InspectorResourceContentLoader.h
diff --git a/Source/core/inspector/InspectorResourceContentLoader.h b/Source/core/inspector/InspectorResourceContentLoader.h
index 573cab540baba4607307a122fefb3e57e18b3f3c..ccee28b2d78d8dc400366ebace37d2795ca1d5c5 100644
--- a/Source/core/inspector/InspectorResourceContentLoader.h
+++ b/Source/core/inspector/InspectorResourceContentLoader.h
@@ -21,7 +21,7 @@ class InspectorResourceContentLoader FINAL : public NoBaseWillBeGarbageCollected
WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED;
public:
explicit InspectorResourceContentLoader(Page*);
- void ensureResourcesContentLoaded(PassOwnPtrWillBeRawPtr<VoidCallback>);
+ void ensureResourcesContentLoaded(VoidCallback*);
~InspectorResourceContentLoader();
void trace(Visitor*);
void dispose();
@@ -35,7 +35,7 @@ private:
void checkDone();
void start();
- WillBeHeapVector<OwnPtrWillBeMember<VoidCallback> > m_callbacks;
+ PersistentHeapVectorWillBeHeapVector<Member<VoidCallback> > m_callbacks;
bool m_allRequestsStarted;
bool m_started;
RawPtrWillBeMember<Page> m_page;
« no previous file with comments | « Source/core/inspector/InspectorPageAgent.cpp ('k') | Source/core/inspector/InspectorResourceContentLoader.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698