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

Unified Diff: webkit/appcache/appcache_host.h

Issue 5298008: net: Add namespace net to URLRequest and URLRequestJob classes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: some chromeos fixes Created 10 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: webkit/appcache/appcache_host.h
diff --git a/webkit/appcache/appcache_host.h b/webkit/appcache/appcache_host.h
index d3743b42c3b5ee6ce61fdbd18d33a369798c1752..0aa0351451f10efefaf53c2c8b5d3b3ade9b5b05 100644
--- a/webkit/appcache/appcache_host.h
+++ b/webkit/appcache/appcache_host.h
@@ -16,7 +16,9 @@
#include "webkit/appcache/appcache_storage.h"
#include "webkit/glue/resource_type.h"
+namespace net {
class URLRequest;
+} // namespace net
namespace appcache {
@@ -72,7 +74,7 @@ class AppCacheHost : public AppCacheStorage::Delegate,
// Support for loading resources out of the appcache.
// May return NULL if the request isn't subject to retrieval from an appache.
AppCacheRequestHandler* CreateRequestHandler(
- URLRequest* request, ResourceType::Type resource_type);
+ net::URLRequest* request, ResourceType::Type resource_type);
// Support for devtools inspecting appcache resources.
void GetResourceList(std::vector<AppCacheResourceInfo>* resource_infos);

Powered by Google App Engine
This is Rietveld 408576698