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

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: 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 888beb90e8e83820edd008d34fcbd7ff01c873fa..4ec1bf67c41674bef7edcd7baa5311a4abd7b433 100644
--- a/Source/modules/filesystem/InspectorFileSystemAgent.cpp
+++ b/Source/modules/filesystem/InspectorFileSystemAgent.cpp
@@ -595,9 +595,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()
@@ -726,4 +726,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