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

Unified Diff: chrome/browser/extensions/api/developer_private/developer_private_api.h

Issue 16402016: Copy folder recursively for syncfsToLocalfs export. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: comment Created 7 years, 6 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 | « no previous file | chrome/browser/extensions/api/developer_private/developer_private_api.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/api/developer_private/developer_private_api.h
diff --git a/chrome/browser/extensions/api/developer_private/developer_private_api.h b/chrome/browser/extensions/api/developer_private/developer_private_api.h
index 01361b9cf45a0b66ebdece9c462335b2c5caf607..244af11e217590f826d03bb3d5125c3cc9a4b65b 100644
--- a/chrome/browser/extensions/api/developer_private/developer_private_api.h
+++ b/chrome/browser/extensions/api/developer_private/developer_private_api.h
@@ -351,16 +351,16 @@ class DeveloperPrivateExportSyncfsFolderToLocalfsFunction
void ClearPrexistingDirectoryContent(const base::FilePath& project_path);
- void ReadSyncFileSystemDirectory(const base::FilePath& project_path);
+ void ReadSyncFileSystemDirectory(const base::FilePath& project_path,
+ const base::FilePath& destination_path);
void ReadSyncFileSystemDirectoryCb(
const base::FilePath& project_path,
+ const base::FilePath& destination_path,
base::PlatformFileError result,
const fileapi::FileSystemOperation::FileEntryList& file_list,
bool has_more);
- void CreateFolderAndSendResponse(const base::FilePath& project_path);
-
void SnapshotFileCallback(
const base::FilePath& target_path,
base::PlatformFileError result,
@@ -374,7 +374,7 @@ class DeveloperPrivateExportSyncfsFolderToLocalfsFunction
scoped_refptr<fileapi::FileSystemContext> context_;
private:
- int pendingCallbacksCount_;
+ int pendingCopyOperationsCount_;
// This is set to false if any of the copyFile operations fail on
// call of the API. It is returned as a response of the API call.
« no previous file with comments | « no previous file | chrome/browser/extensions/api/developer_private/developer_private_api.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698