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

Unified Diff: webkit/glue/resource_fetcher.h

Issue 19535: Cleanup in webkit/glue/ (Closed)
Patch Set: Created 11 years, 11 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 | « webkit/glue/image_decoder.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/resource_fetcher.h
diff --git a/webkit/glue/resource_fetcher.h b/webkit/glue/resource_fetcher.h
index 91d08a18702d02e94f0b58450a3ff965779c3477..b20d186d8821129ccf8cb0047bacaeb30b5e38b9 100644
--- a/webkit/glue/resource_fetcher.h
+++ b/webkit/glue/resource_fetcher.h
@@ -48,18 +48,18 @@ class ResourceFetcher : public WebCore::ResourceHandleClient {
// Stop the request and don't call the callback.
void Cancel();
- bool completed() { return completed_; }
+ bool completed() const { return completed_; }
// ResourceHandleClient methods
virtual void didReceiveResponse(WebCore::ResourceHandle* resource_handle,
const WebCore::ResourceResponse& response);
- virtual void didReceiveData(WebCore::ResourceHandle* resource_handle,
+ virtual void didReceiveData(WebCore::ResourceHandle* resource_handle,
const char* data, int length, int total_length);
virtual void didFinishLoading(WebCore::ResourceHandle* resource_handle);
- virtual void didFail(WebCore::ResourceHandle* resource_handle,
+ virtual void didFail(WebCore::ResourceHandle* resource_handle,
const WebCore::ResourceError& error);
protected:
« no previous file with comments | « webkit/glue/image_decoder.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698