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

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

Issue 2012753003: DevTools: consolidate protocol generators for front-end, backend and type builder. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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: third_party/WebKit/Source/core/inspector/InspectorResourceAgent.cpp
diff --git a/third_party/WebKit/Source/core/inspector/InspectorResourceAgent.cpp b/third_party/WebKit/Source/core/inspector/InspectorResourceAgent.cpp
index a74ecc7747fc37a4e8536a55a65a77bf6b0d09e3..44374645770d7b7ae98a0e3999e25aa8676c743d 100644
--- a/third_party/WebKit/Source/core/inspector/InspectorResourceAgent.cpp
+++ b/third_party/WebKit/Source/core/inspector/InspectorResourceAgent.cpp
@@ -59,7 +59,6 @@
#include "core/page/Page.h"
#include "core/xmlhttprequest/XMLHttpRequest.h"
#include "platform/blob/BlobData.h"
-#include "platform/inspector_protocol/Frontend.h"
#include "platform/inspector_protocol/Values.h"
#include "platform/network/HTTPHeaderMap.h"
#include "platform/network/ResourceError.h"
@@ -1113,8 +1112,7 @@ void InspectorResourceAgent::removeFinishedReplayXHRFired(Timer<InspectorResourc
}
InspectorResourceAgent::InspectorResourceAgent(InspectedFrames* inspectedFrames)
- : InspectorBaseAgent<InspectorResourceAgent, protocol::Network::Frontend>("Network")
- , m_inspectedFrames(inspectedFrames)
+ : m_inspectedFrames(inspectedFrames)
, m_resourcesData(NetworkResourcesData::create(maximumTotalBufferSize, maximumResourceBufferSize))
, m_pendingRequest(nullptr)
, m_isRecalculatingStyle(false)

Powered by Google App Engine
This is Rietveld 408576698