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

Unified Diff: Source/core/inspector/PageRuntimeAgent.h

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/core/inspector/PageRuntimeAgent.h
diff --git a/Source/core/inspector/PageRuntimeAgent.h b/Source/core/inspector/PageRuntimeAgent.h
index 5e41bba1c64f1d30d74724d3a57bceda3b9a4c80..05acb05ed5a54e24a103d70b4d9ee5646ad90ab8 100644
--- a/Source/core/inspector/PageRuntimeAgent.h
+++ b/Source/core/inspector/PageRuntimeAgent.h
@@ -43,11 +43,12 @@ class SecurityOrigin;
class PageRuntimeAgent FINAL : public InspectorRuntimeAgent {
public:
- static PassOwnPtr<PageRuntimeAgent> create(InjectedScriptManager* injectedScriptManager, ScriptDebugServer* scriptDebugServer, Page* page, InspectorPageAgent* pageAgent)
+ static PassOwnPtrWillBeRawPtr<PageRuntimeAgent> create(InjectedScriptManager* injectedScriptManager, ScriptDebugServer* scriptDebugServer, Page* page, InspectorPageAgent* pageAgent)
{
- return adoptPtr(new PageRuntimeAgent(injectedScriptManager, scriptDebugServer, page, pageAgent));
+ return adoptPtrWillBeNoop(new PageRuntimeAgent(injectedScriptManager, scriptDebugServer, page, pageAgent));
}
virtual ~PageRuntimeAgent();
+ virtual void trace(Visitor*) OVERRIDE;
virtual void init() OVERRIDE;
virtual void enable(ErrorString*) OVERRIDE;
@@ -63,8 +64,8 @@ private:
virtual void unmuteConsole() OVERRIDE;
void reportExecutionContextCreation();
- Page* m_inspectedPage;
- InspectorPageAgent* m_pageAgent;
+ RawPtrWillBeMember<Page> m_inspectedPage;
+ RawPtrWillBeMember<InspectorPageAgent> m_pageAgent;
bool m_mainWorldContextCreated;
};

Powered by Google App Engine
This is Rietveld 408576698