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

Unified Diff: net/disk_cache/flash/storage.h

Issue 125643002: Convert most of base and net to use base::File (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Use error_details() Created 6 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
Index: net/disk_cache/flash/storage.h
diff --git a/net/disk_cache/flash/storage.h b/net/disk_cache/flash/storage.h
index 38c4a4e488bf156734540b0e43bb030bdbbc8e9b..d875506efb04f33883c7572177efc9f0501e6492 100644
--- a/net/disk_cache/flash/storage.h
+++ b/net/disk_cache/flash/storage.h
@@ -6,7 +6,7 @@
#define NET_DISK_CACHE_FLASH_STORAGE_H_
#include "base/basictypes.h"
-#include "base/platform_file.h"
+#include "base/files/file.h"
#include "net/base/net_export.h"
namespace disk_cache {
@@ -25,7 +25,7 @@ class NET_EXPORT_PRIVATE Storage {
private:
base::FilePath path_;
int32 size_;
- base::PlatformFile file_;
+ base::File file_;
DISALLOW_COPY_AND_ASSIGN(Storage);
};

Powered by Google App Engine
This is Rietveld 408576698