| 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 ff4bbbd74955a395503e608747b8b0e446130fba..bed64b18b618c78e866d0f5af4c7169cdbc64db1 100644
|
| --- a/third_party/WebKit/Source/core/inspector/InspectorNetworkAgent.cpp
|
| +++ b/third_party/WebKit/Source/core/inspector/InspectorNetworkAgent.cpp
|
| @@ -1513,8 +1513,9 @@ bool InspectorNetworkAgent::fetchResourceContent(Document* document,
|
| if (!cachedResource)
|
| cachedResource = memoryCache()->resourceForURL(
|
| url, document->fetcher()->getCacheIdentifier());
|
| - if (cachedResource && InspectorPageAgent::cachedResourceContent(
|
| - cachedResource, content, base64Encoded))
|
| + if (cachedResource &&
|
| + InspectorPageAgent::cachedResourceContent(cachedResource, content,
|
| + base64Encoded))
|
| return true;
|
|
|
| // Then fall back to resource data.
|
|
|