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

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: 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
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..22be9e85065321eaf60eea7f9cf52120a66a66e3 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& current_path);
miket_OOO 2013/06/12 19:39:24 "current_path" has special meaning: it's the curre
void ReadSyncFileSystemDirectoryCb(
const base::FilePath& project_path,
+ const base::FilePath& current_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,

Powered by Google App Engine
This is Rietveld 408576698