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

Unified Diff: chrome/browser/download/download_throttling_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
« no previous file with comments | « no previous file | chrome/browser/download/download_throttling_resource_handler.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/download/download_throttling_resource_handler.h
===================================================================
--- chrome/browser/download/download_throttling_resource_handler.h (revision 111374)
+++ chrome/browser/download/download_throttling_resource_handler.h (working copy)
@@ -46,10 +46,10 @@
uint64 size) OVERRIDE;
virtual bool OnRequestRedirected(int request_id,
const GURL& url,
- ResourceResponse* response,
+ content::ResourceResponse* response,
bool* defer) OVERRIDE;
virtual bool OnResponseStarted(int request_id,
- ResourceResponse* response) OVERRIDE;
+ content::ResourceResponse* response) OVERRIDE;
virtual bool OnWillStart(int request_id,
const GURL& url,
bool* defer) OVERRIDE;
@@ -87,7 +87,7 @@
// Response supplied to OnResponseStarted. Only non-null if OnResponseStarted
// is invoked.
- scoped_refptr<ResourceResponse> response_;
+ scoped_refptr<content::ResourceResponse> response_;
// If we're created by way of BufferedEventHandler we'll get one request for
// a buffer. This is that buffer.
« no previous file with comments | « no previous file | chrome/browser/download/download_throttling_resource_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698