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

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

Issue 1234793003: Oilpan: fix build after r198872. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 5 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/inspector/InspectorResourceContentLoader.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/inspector/InspectorResourceContentLoader.h
diff --git a/Source/core/inspector/InspectorResourceContentLoader.h b/Source/core/inspector/InspectorResourceContentLoader.h
index 6a0819a4c889bae3050f6c34df86c653132c3fdc..ecb683ba92ec192f4665d8bcc2ae0268cbadca24 100644
--- a/Source/core/inspector/InspectorResourceContentLoader.h
+++ b/Source/core/inspector/InspectorResourceContentLoader.h
@@ -29,7 +29,7 @@ public:
void dispose();
DECLARE_TRACE();
- void ensureResourcesContentLoaded(PassOwnPtrWillBeRawPtr<Closure> callback);
+ void ensureResourcesContentLoaded(PassOwnPtr<Closure> callback);
void didCommitLoadForLocalFrame(LocalFrame*);
private:
@@ -42,7 +42,7 @@ private:
void stop();
bool hasFinished();
- WillBeHeapVector<OwnPtrWillBeMember<Closure>> m_callbacks;
+ Vector<OwnPtr<Closure>> m_callbacks;
bool m_allRequestsStarted;
bool m_started;
RawPtrWillBeMember<LocalFrame> m_inspectedFrame;
« no previous file with comments | « no previous file | Source/core/inspector/InspectorResourceContentLoader.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698