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

Unified Diff: webkit/fileapi/file_system_operation.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/fileapi/file_system_operation.h
diff --git a/webkit/fileapi/file_system_operation.h b/webkit/fileapi/file_system_operation.h
index 01e2da1853c6dbeba2f55494a71137b6ee7f9b27..6614b5e9cec03068a8cb1fcaf47a763599508346 100644
--- a/webkit/fileapi/file_system_operation.h
+++ b/webkit/fileapi/file_system_operation.h
@@ -20,8 +20,11 @@ namespace base {
class Time;
}
-class GURL;
+namespace net {
class URLRequest;
+} // namespace net
+
+class GURL;
class URLRequestContext;
namespace fileapi {
@@ -150,7 +153,7 @@ class FileSystemOperation {
// These are all used only by Write().
friend class FileWriterDelegate;
scoped_ptr<FileWriterDelegate> file_writer_delegate_;
- scoped_ptr<URLRequest> blob_request_;
+ scoped_ptr<net::URLRequest> blob_request_;
FileSystemOperation* cancel_operation_;
DISALLOW_COPY_AND_ASSIGN(FileSystemOperation);

Powered by Google App Engine
This is Rietveld 408576698