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

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

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 | « Source/core/inspector/InspectorResourceContentLoader.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/inspector/InspectorResourceContentLoader.cpp
diff --git a/Source/core/inspector/InspectorResourceContentLoader.cpp b/Source/core/inspector/InspectorResourceContentLoader.cpp
index 3e0dbc877e04b03d6654429bfe02b463598ce09d..75b3563b1d60b1cb1868a5eabf876c3a31c7b943 100644
--- a/Source/core/inspector/InspectorResourceContentLoader.cpp
+++ b/Source/core/inspector/InspectorResourceContentLoader.cpp
@@ -159,7 +159,6 @@ InspectorResourceContentLoader::~InspectorResourceContentLoader()
DEFINE_TRACE(InspectorResourceContentLoader)
{
- visitor->trace(m_callbacks);
visitor->trace(m_inspectedFrame);
}
@@ -196,7 +195,7 @@ void InspectorResourceContentLoader::checkDone()
{
if (!hasFinished())
return;
- WillBeHeapVector<OwnPtrWillBeMember<Closure>> callbacks;
+ Vector<OwnPtr<Closure>> callbacks;
callbacks.swap(m_callbacks);
for (const auto& callback : callbacks)
(*callback)();
« no previous file with comments | « Source/core/inspector/InspectorResourceContentLoader.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698