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

Unified Diff: Source/core/inspector/InspectorResourceAgent.cpp

Issue 307943002: Oilpan: Prepare moving InspectorController and InspectorAgents to oilpan. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Added agents() 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/InspectorResourceAgent.cpp
diff --git a/Source/core/inspector/InspectorResourceAgent.cpp b/Source/core/inspector/InspectorResourceAgent.cpp
index d4202f41799afdb222b3ec5bd313748a5359abeb..fcd56e5f5eca126177c6e666760cd7d4856a1e46 100644
--- a/Source/core/inspector/InspectorResourceAgent.cpp
+++ b/Source/core/inspector/InspectorResourceAgent.cpp
@@ -290,7 +290,15 @@ InspectorResourceAgent::~InspectorResourceAgent()
ErrorString error;
disable(&error);
}
+#if !ENABLE(OILPAN)
ASSERT(!m_instrumentingAgents->inspectorResourceAgent());
Mads Ager (chromium) 2014/06/11 06:20:48 Same question here. Since we are not changing m_in
+#endif
+}
+
+void InspectorResourceAgent::trace(Visitor* visitor)
+{
+ visitor->trace(m_pageAgent);
+ InspectorBaseAgent::trace(visitor);
}
void InspectorResourceAgent::willSendRequest(unsigned long identifier, DocumentLoader* loader, ResourceRequest& request, const ResourceResponse& redirectResponse, const FetchInitiatorInfo& initiatorInfo)

Powered by Google App Engine
This is Rietveld 408576698