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

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

Issue 306053010: Tried using CrossThreadPersistent for workerDebuggerAgents (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 7 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.h
diff --git a/Source/modules/filesystem/InspectorFileSystemAgent.h b/Source/modules/filesystem/InspectorFileSystemAgent.h
index 26f9a0cd5acde6280917e333136af220efecbc8d..03d4844452727ca73e2e7aeab8e7aff7ed717a36 100644
--- a/Source/modules/filesystem/InspectorFileSystemAgent.h
+++ b/Source/modules/filesystem/InspectorFileSystemAgent.h
@@ -43,8 +43,9 @@ class SecurityOrigin;
class InspectorFileSystemAgent FINAL : public InspectorBaseAgent<InspectorFileSystemAgent>, public InspectorBackendDispatcher::FileSystemCommandHandler {
public:
- static PassOwnPtr<InspectorFileSystemAgent> create(Page*);
+ static PassOwnPtrWillBeRawPtr<InspectorFileSystemAgent> create(Page*);
virtual ~InspectorFileSystemAgent();
+ virtual void trace(Visitor*) OVERRIDE;
virtual void enable(ErrorString*) OVERRIDE;
virtual void disable(ErrorString*) OVERRIDE;
@@ -63,7 +64,7 @@ private:
bool assertEnabled(ErrorString*);
ExecutionContext* assertExecutionContextForOrigin(ErrorString*, SecurityOrigin*);
- Page* m_page;
+ RawPtrWillBeMember<Page> m_page;
bool m_enabled;
};

Powered by Google App Engine
This is Rietveld 408576698