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

Unified Diff: chrome/browser/chromeos/file_system_provider/operations/open_file.h

Issue 279213002: [fsp] Add support for closing files. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased. Created 6 years, 7 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/chromeos/file_system_provider/operations/open_file.h
diff --git a/chrome/browser/chromeos/file_system_provider/operations/open_file.h b/chrome/browser/chromeos/file_system_provider/operations/open_file.h
index efe0a53d1a8c5821cc49fedf90263c7f4d154a59..0af47e1a85f53d104be03071fbe4fa0d11b1f35e 100644
--- a/chrome/browser/chromeos/file_system_provider/operations/open_file.h
+++ b/chrome/browser/chromeos/file_system_provider/operations/open_file.h
@@ -35,7 +35,7 @@ class OpenFile : public Operation {
const base::FilePath& file_path,
ProvidedFileSystemInterface::OpenFileMode mode,
bool create,
- const fileapi::AsyncFileUtil::StatusCallback& callback);
+ const ProvidedFileSystemInterface::OpenFileCallback& callback);
virtual ~OpenFile();
// Operation overrides.
@@ -49,7 +49,7 @@ class OpenFile : public Operation {
base::FilePath file_path_;
ProvidedFileSystemInterface::OpenFileMode mode_;
bool create_;
- const fileapi::AsyncFileUtil::StatusCallback callback_;
+ const ProvidedFileSystemInterface::OpenFileCallback callback_;
DISALLOW_COPY_AND_ASSIGN(OpenFile);
};

Powered by Google App Engine
This is Rietveld 408576698