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

Unified Diff: net/disk_cache/mapped_file.h

Issue 12163003: Add FilePath to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 11 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
« no previous file with comments | « net/disk_cache/file.h ('k') | net/http/infinite_cache.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/disk_cache/mapped_file.h
diff --git a/net/disk_cache/mapped_file.h b/net/disk_cache/mapped_file.h
index c5960d0c6ba1658bce26e31de20a8206ab1bc935..61909975422de6b57d92a74d7b7e4b53f503655b 100644
--- a/net/disk_cache/mapped_file.h
+++ b/net/disk_cache/mapped_file.h
@@ -12,7 +12,9 @@
#include "net/disk_cache/file.h"
#include "net/disk_cache/file_block.h"
+namespace base {
class FilePath;
+}
namespace disk_cache {
@@ -27,7 +29,7 @@ class NET_EXPORT_PRIVATE MappedFile : public File {
// Performs object initialization. name is the file to use, and size is the
// amount of data to memory map from the file. If size is 0, the whole file
// will be mapped in memory.
- void* Init(const FilePath& name, size_t size);
+ void* Init(const base::FilePath& name, size_t size);
void* buffer() const {
return buffer_;
« no previous file with comments | « net/disk_cache/file.h ('k') | net/http/infinite_cache.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698