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

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

Issue 793713002: Oilpan: add missing tracing of InspectorTracingAgent objects. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years 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
« no previous file with comments | « no previous file | Source/core/inspector/InspectorTracingAgent.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/inspector/InspectorTracingAgent.h
diff --git a/Source/core/inspector/InspectorTracingAgent.h b/Source/core/inspector/InspectorTracingAgent.h
index 9d51b2163262980b8269364bfdace070c4ec8782..30c4a80ae4ba6e4a2d7ba07214c45ac1733726ef 100644
--- a/Source/core/inspector/InspectorTracingAgent.h
+++ b/Source/core/inspector/InspectorTracingAgent.h
@@ -28,6 +28,8 @@ public:
return adoptPtrWillBeNoop(new InspectorTracingAgent(client, workerAgent, page));
}
+ void trace(Visitor*) override;
+
// Base agent methods.
virtual void restore() override;
virtual void setFrontend(InspectorFrontend*) override;
@@ -50,10 +52,10 @@ private:
int m_layerTreeId;
InspectorClient* m_client;
InspectorFrontend::Tracing* m_frontend;
- InspectorWorkerAgent* m_workerAgent;
- Page* m_page;
+ RawPtrWillBeMember<InspectorWorkerAgent> m_workerAgent;
+ RawPtrWillBeMember<Page> m_page;
};
-}
+} // namespace blink
#endif // InspectorTracingAgent_h
« no previous file with comments | « no previous file | Source/core/inspector/InspectorTracingAgent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698