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

Unified Diff: webkit/browser/blob/file_stream_reader.h

Issue 145303002: Convert Media Galleries to use base::File (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase 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
« no previous file with comments | « webkit/browser/blob/blob_url_request_job.h ('k') | webkit/browser/blob/file_stream_reader.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/browser/blob/file_stream_reader.h
diff --git a/webkit/browser/blob/file_stream_reader.h b/webkit/browser/blob/file_stream_reader.h
index 2f3d060a5e4d619317079a016cc2eea0fbf5717f..832c5d5dc668b7b21bfba5939d0718bd3631822c 100644
--- a/webkit/browser/blob/file_stream_reader.h
+++ b/webkit/browser/blob/file_stream_reader.h
@@ -7,12 +7,12 @@
#include "base/basictypes.h"
#include "base/compiler_specific.h"
+#include "base/files/file.h"
#include "net/base/completion_callback.h"
#include "webkit/browser/webkit_storage_browser_export.h"
namespace base {
class FilePath;
-struct PlatformFileInfo;
class TaskRunner;
class Time;
}
@@ -60,7 +60,7 @@ class FileStreamReader {
// Verify if the underlying file has not been modified.
WEBKIT_STORAGE_BROWSER_EXPORT static bool VerifySnapshotTime(
const base::Time& expected_modification_time,
- const base::PlatformFileInfo& file_info);
+ const base::File::Info& file_info);
// It is valid to delete the reader at any time. If the stream is deleted
// while it has a pending read, its callback will not be called.
« no previous file with comments | « webkit/browser/blob/blob_url_request_job.h ('k') | webkit/browser/blob/file_stream_reader.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698