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

Unified Diff: chrome/browser/devtools/devtools_file_system_indexer.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
Index: chrome/browser/devtools/devtools_file_system_indexer.h
diff --git a/chrome/browser/devtools/devtools_file_system_indexer.h b/chrome/browser/devtools/devtools_file_system_indexer.h
index 5822e5829dde224f9898addcc3c0c5383cc02554..2f1322670c3f7ddba1eb25fb5328bc475d1076b6 100644
--- a/chrome/browser/devtools/devtools_file_system_indexer.h
+++ b/chrome/browser/devtools/devtools_file_system_indexer.h
@@ -10,6 +10,7 @@
#include <vector>
#include "base/callback.h"
+#include "base/files/file.h"
#include "base/memory/ref_counted.h"
#include "base/platform_file.h"
@@ -51,16 +52,16 @@ class DevToolsFileSystemIndexer
void StopOnFileThread();
void CollectFilesToIndex();
void IndexFiles();
- void StartFileIndexing(base::PlatformFileError error,
+ void StartFileIndexing(base::File::Error error,
base::PassPlatformFile pass_file,
bool);
void ReadFromFile();
- void OnRead(base::PlatformFileError error,
+ void OnRead(base::File::Error error,
const char* data,
int bytes_read);
void FinishFileIndexing(bool success);
void CloseFile();
- void CloseCallback(base::PlatformFileError error);
+ void CloseCallback(base::File::Error error);
void ReportWorked();
base::FilePath file_system_path_;
« no previous file with comments | « chrome/browser/chromeos/fileapi/file_system_backend.cc ('k') | chrome/browser/devtools/devtools_file_system_indexer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698