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

Unified Diff: third_party/WebKit/public/platform/WebURLLoaderTestDelegate.h

Issue 2537753002: Remove WebURLLoader* argument from WebURLLoaderClient methods (Closed)
Patch Set: a Created 4 years, 1 month 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 | « third_party/WebKit/public/platform/WebURLLoaderMockFactory.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/public/platform/WebURLLoaderTestDelegate.h
diff --git a/third_party/WebKit/public/platform/WebURLLoaderTestDelegate.h b/third_party/WebKit/public/platform/WebURLLoaderTestDelegate.h
index 833cb7e515047e51278493b99517d40cb1ae2e27..910885bb9e77fc4cc640caa753ed2d693487432e 100644
--- a/third_party/WebKit/public/platform/WebURLLoaderTestDelegate.h
+++ b/third_party/WebKit/public/platform/WebURLLoaderTestDelegate.h
@@ -9,7 +9,6 @@
namespace blink {
-class WebURLLoader;
class WebURLResponse;
class WebURLLoaderClient;
struct WebURLError;
@@ -24,20 +23,16 @@ class BLINK_PLATFORM_EXPORT WebURLLoaderTestDelegate {
virtual ~WebURLLoaderTestDelegate();
virtual void didReceiveResponse(WebURLLoaderClient* originalClient,
- WebURLLoader*,
const WebURLResponse&);
virtual void didReceiveData(WebURLLoaderClient* originalClient,
- WebURLLoader*,
const char* data,
int dataLength,
int encodedDataLength);
virtual void didFail(WebURLLoaderClient* originalClient,
- WebURLLoader*,
const WebURLError&,
int64_t totalEncodedDataLength,
int64_t totalEncodedBodyLength);
virtual void didFinishLoading(WebURLLoaderClient* originalClient,
- WebURLLoader*,
double finishTime,
int64_t totalEncodedDataLength,
int64_t totalEncodedBodyLength);
« no previous file with comments | « third_party/WebKit/public/platform/WebURLLoaderMockFactory.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698