| Index: Source/modules/filesystem/InspectorFileSystemAgent.cpp
|
| diff --git a/Source/modules/filesystem/InspectorFileSystemAgent.cpp b/Source/modules/filesystem/InspectorFileSystemAgent.cpp
|
| index 4ee0ceea9ec3f01ed7217a4d2850118a74e13f54..62bd077bbd465ef710c39eef71a27ceb4428bcb3 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
|
|
|