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

Unified Diff: chrome/browser/chromeos/fileapi/file_system_backend.cc

Issue 19092002: FileAPI: Change FileSystemBackend::OpenFileSystem signature (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 5 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/fileapi/file_system_backend.cc
diff --git a/chrome/browser/chromeos/fileapi/file_system_backend.cc b/chrome/browser/chromeos/fileapi/file_system_backend.cc
index 4790e08679438e1781dfb64dab0dfdc9e348fb60..1cc745799142c7ca6a306efb0cbe35444013d644 100644
--- a/chrome/browser/chromeos/fileapi/file_system_backend.cc
+++ b/chrome/browser/chromeos/fileapi/file_system_backend.cc
@@ -106,11 +106,12 @@ bool FileSystemBackend::CanHandleType(fileapi::FileSystemType type) const {
}
}
-void FileSystemBackend::OpenFileSystem(
+void FileSystemBackend::InitializeFileSystem(
const GURL& origin_url,
fileapi::FileSystemType type,
fileapi::OpenFileSystemMode mode,
- const OpenFileSystemCallback& callback) {
+ fileapi::FileSystemContext* context,
+ const InitializeFileSystemCallback& callback) {
DCHECK(fileapi::IsolatedContext::IsIsolatedType(type));
// Nothing to validate for external filesystem.
callback.Run(GetFileSystemRootURI(origin_url, type),

Powered by Google App Engine
This is Rietveld 408576698