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

Unified Diff: Source/core/fetch/ResourceFetcher.h

Issue 1299493003: Attach mixed content status to resource requests when sent to devtools (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: isMixedContent() -> ContextTypeNotMixedContent, and rename devtools protocol enum Created 5 years, 4 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/fetch/ResourceFetcher.h
diff --git a/Source/core/fetch/ResourceFetcher.h b/Source/core/fetch/ResourceFetcher.h
index 5bd16d5a8d3d72f47c2e770d1f0578666c5d64fb..e744767e1632d7bdd0c720ab71a99b70643e2027 100644
--- a/Source/core/fetch/ResourceFetcher.h
+++ b/Source/core/fetch/ResourceFetcher.h
@@ -113,7 +113,7 @@ public:
void didChangeLoadingPriority(const Resource*, ResourceLoadPriority, int intraPriorityValue);
void didFailLoading(const Resource*, const ResourceError&);
void willSendRequest(unsigned long identifier, ResourceRequest&, const ResourceResponse& redirectResponse, const FetchInitiatorInfo&);
- void didReceiveResponse(const Resource*, const ResourceResponse&);
+ void didReceiveResponse(Resource*, const ResourceResponse&);
void didReceiveData(const Resource*, const char* data, int dataLength, int encodedDataLength);
void didDownloadData(const Resource*, int dataLength, int encodedDataLength);
void subresourceLoaderFinishedLoadingOnePart(ResourceLoader*);

Powered by Google App Engine
This is Rietveld 408576698