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

Unified Diff: chrome/browser/renderer_host/safe_browsing_resource_handler.h

Issue 8680036: Move ResourceResponse struct into the Content API, since it's used in Chrome. While at it, I also... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: add gypi changes Created 9 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
Index: chrome/browser/renderer_host/safe_browsing_resource_handler.h
===================================================================
--- chrome/browser/renderer_host/safe_browsing_resource_handler.h (revision 111374)
+++ chrome/browser/renderer_host/safe_browsing_resource_handler.h (working copy)
@@ -54,10 +54,10 @@
virtual bool OnUploadProgress(
int request_id, uint64 position, uint64 size) OVERRIDE;
virtual bool OnRequestRedirected(
- int request_id, const GURL& new_url, ResourceResponse* response,
+ int request_id, const GURL& new_url, content::ResourceResponse* response,
bool* defer) OVERRIDE;
virtual bool OnResponseStarted(
- int request_id, ResourceResponse* response) OVERRIDE;
+ int request_id, content::ResourceResponse* response) OVERRIDE;
virtual bool OnWillStart(
int request_id, const GURL& url, bool* defer) OVERRIDE;
virtual bool OnWillRead(
@@ -152,7 +152,7 @@
// valid to access these members when defer_state_ != DEFERRED_NONE.
GURL deferred_url_;
int deferred_request_id_;
- scoped_refptr<ResourceResponse> deferred_redirect_response_;
+ scoped_refptr<content::ResourceResponse> deferred_redirect_response_;
scoped_refptr<ResourceHandler> next_handler_;
int render_process_host_id_;

Powered by Google App Engine
This is Rietveld 408576698