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

Unified Diff: chrome/browser/profiles/profile_io_data.cc

Issue 9580002: Add ResourceRequestInfo. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 9 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
Index: chrome/browser/profiles/profile_io_data.cc
===================================================================
--- chrome/browser/profiles/profile_io_data.cc (revision 125418)
+++ chrome/browser/profiles/profile_io_data.cc (working copy)
@@ -42,7 +42,7 @@
#include "chrome/common/pref_names.h"
#include "chrome/common/url_constants.h"
#include "content/browser/renderer_host/resource_dispatcher_host.h"
-#include "content/browser/renderer_host/resource_dispatcher_host_request_info.h"
+#include "content/browser/renderer_host/resource_request_info_impl.h"
#include "content/public/browser/browser_thread.h"
#include "content/public/browser/host_zoom_map.h"
#include "content/public/browser/notification_service.h"
@@ -66,6 +66,7 @@
using content::BrowserContext;
using content::BrowserThread;
using content::ResourceContext;
+using content::ResourceRequestInfoImpl;
namespace {
@@ -147,6 +148,7 @@
DISALLOW_COPY_AND_ASSIGN(ProtocolHandlerRegistryInterceptor);
};
+// TODO(darin): Move this class to src/content
class ChromeBlobProtocolHandler : public webkit_blob::BlobProtocolHandler {
public:
ChromeBlobProtocolHandler(
@@ -160,7 +162,7 @@
private:
virtual scoped_refptr<webkit_blob::BlobData>
LookupBlobData(net::URLRequest* request) const {
- ResourceDispatcherHostRequestInfo* info =
+ const ResourceRequestInfoImpl* info =
ResourceDispatcherHost::InfoForRequest(request);
if (!info)
return NULL;
« no previous file with comments | « chrome/browser/plugin_installer.cc ('k') | chrome/browser/renderer_host/chrome_resource_dispatcher_host_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698