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

Unified Diff: Source/modules/filesystem/InspectorFileSystemAgent.cpp

Issue 307943002: Oilpan: Prepare moving InspectorController and InspectorAgents to oilpan. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased Created 6 years, 6 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/modules/filesystem/InspectorFileSystemAgent.cpp
diff --git a/Source/modules/filesystem/InspectorFileSystemAgent.cpp b/Source/modules/filesystem/InspectorFileSystemAgent.cpp
index 23648bf2e7c9155751dc000384b511c39942bba3..46000d443eb029bc593baa4a47c619d81f744969 100644
--- a/Source/modules/filesystem/InspectorFileSystemAgent.cpp
+++ b/Source/modules/filesystem/InspectorFileSystemAgent.cpp
@@ -596,9 +596,9 @@ bool DeleteEntryRequest::didDeleteEntry()
} // anonymous namespace
// static
-PassOwnPtr<InspectorFileSystemAgent> InspectorFileSystemAgent::create(Page* page)
+PassOwnPtrWillBeRawPtr<InspectorFileSystemAgent> InspectorFileSystemAgent::create(Page* page)
{
- return adoptPtr(new InspectorFileSystemAgent(page));
+ return adoptPtrWillBeNoop(new InspectorFileSystemAgent(page));
}
InspectorFileSystemAgent::~InspectorFileSystemAgent()
@@ -727,4 +727,10 @@ ExecutionContext* InspectorFileSystemAgent::assertExecutionContextForOrigin(Erro
return 0;
}
+void InspectorFileSystemAgent::trace(Visitor* visitor)
+{
+ visitor->trace(m_page);
+ InspectorBaseAgent::trace(visitor);
+}
+
} // namespace WebCore

Powered by Google App Engine
This is Rietveld 408576698