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

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

Issue 673243002: Rename Resource::willSendRequest() to willFollowRedirect() (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Addressed #4 Created 6 years, 2 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
« no previous file with comments | « Source/core/fetch/Resource.cpp ('k') | Source/core/fetch/ResourceLoader.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/fetch/ResourceLoader.h
diff --git a/Source/core/fetch/ResourceLoader.h b/Source/core/fetch/ResourceLoader.h
index 7ce09c9d0e97d9e6f7048935cb2ca52126e89294..82b6f94bbcea6cb5dae7ba68aa02233bdb055d45 100644
--- a/Source/core/fetch/ResourceLoader.h
+++ b/Source/core/fetch/ResourceLoader.h
@@ -73,14 +73,14 @@ public:
void didChangePriority(ResourceLoadPriority, int intraPriorityValue);
// WebURLLoaderClient
- virtual void willSendRequest(blink::WebURLLoader*, blink::WebURLRequest&, const blink::WebURLResponse& redirectResponse) override;
- virtual void didSendData(blink::WebURLLoader*, unsigned long long bytesSent, unsigned long long totalBytesToBeSent) override;
- virtual void didReceiveResponse(blink::WebURLLoader*, const blink::WebURLResponse&) override;
- virtual void didReceiveData(blink::WebURLLoader*, const char*, int, int encodedDataLength) override;
- virtual void didReceiveCachedMetadata(blink::WebURLLoader*, const char* data, int length) override;
- virtual void didFinishLoading(blink::WebURLLoader*, double finishTime, int64 encodedDataLength) override;
- virtual void didFail(blink::WebURLLoader*, const blink::WebURLError&) override;
- virtual void didDownloadData(blink::WebURLLoader*, int, int) override;
+ void willSendRequest(blink::WebURLLoader*, blink::WebURLRequest&, const blink::WebURLResponse& redirectResponse) override;
+ void didSendData(blink::WebURLLoader*, unsigned long long bytesSent, unsigned long long totalBytesToBeSent) override;
+ void didReceiveResponse(blink::WebURLLoader*, const blink::WebURLResponse&) override;
+ void didReceiveData(blink::WebURLLoader*, const char*, int, int encodedDataLength) override;
+ void didReceiveCachedMetadata(blink::WebURLLoader*, const char* data, int length) override;
+ void didFinishLoading(blink::WebURLLoader*, double finishTime, int64 encodedDataLength) override;
+ void didFail(blink::WebURLLoader*, const blink::WebURLError&) override;
+ void didDownloadData(blink::WebURLLoader*, int, int) override;
const KURL& url() const { return m_request.url(); }
bool isLoadedBy(ResourceLoaderHost*) const;
« no previous file with comments | « Source/core/fetch/Resource.cpp ('k') | Source/core/fetch/ResourceLoader.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698