Index: third_party/WebKit/Source/core/inspector/InspectorNetworkAgent.cpp |
diff --git a/third_party/WebKit/Source/core/inspector/InspectorNetworkAgent.cpp b/third_party/WebKit/Source/core/inspector/InspectorNetworkAgent.cpp |
index 803e9d66434117cef7fb3a3b3c175b29b4f957e2..dbced6b7d6229be85a1afa468a0f6dff07069c8d 100644 |
--- a/third_party/WebKit/Source/core/inspector/InspectorNetworkAgent.cpp |
+++ b/third_party/WebKit/Source/core/inspector/InspectorNetworkAgent.cpp |
@@ -637,6 +637,8 @@ void InspectorNetworkAgent::willSendRequestInternal( |
MixedContentChecker::contextTypeForInspector(frame, request))); |
requestInfo->setReferrerPolicy(referrerPolicy(request.getReferrerPolicy())); |
+ if (request.isLinkPreload()) |
+ requestInfo->setIsLinkPreload(true); |
tyoshino (SeeGerritForStatus)
2017/03/27 05:41:07
does it make sense to include these in buildObject
|
String resourceType = InspectorPageAgent::resourceTypeJson(type); |
frontend()->requestWillBeSent( |