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

Side by Side Diff: chrome/browser/extensions/api/developer_private/developer_private_api.h

Issue 132313009: New API to copy syncfs folder to localfs. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: added syncfs checkes 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_EXTENSIONS_API_DEVELOPER_PRIVATE_DEVELOPER_PRIVATE_API_H_ 5 #ifndef CHROME_BROWSER_EXTENSIONS_API_DEVELOPER_PRIVATE_DEVELOPER_PRIVATE_API_H_
6 #define CHROME_BROWSER_EXTENSIONS_API_DEVELOPER_PRIVATE_DEVELOPER_PRIVATE_API_H_ 6 #define CHROME_BROWSER_EXTENSIONS_API_DEVELOPER_PRIVATE_DEVELOPER_PRIVATE_API_H_
7 7
8 #include "base/platform_file.h" 8 #include "base/platform_file.h"
9 #include "chrome/browser/extensions/api/developer_private/entry_picker.h" 9 #include "chrome/browser/extensions/api/developer_private/entry_picker.h"
10 #include "chrome/browser/extensions/api/file_system/file_system_api.h" 10 #include "chrome/browser/extensions/api/file_system/file_system_api.h"
(...skipping 348 matching lines...) Expand 10 before | Expand all | Expand 10 after
359 DECLARE_EXTENSION_FUNCTION("developerPrivate.isProfileManaged", 359 DECLARE_EXTENSION_FUNCTION("developerPrivate.isProfileManaged",
360 DEVELOPERPRIVATE_ISPROFILEMANAGED); 360 DEVELOPERPRIVATE_ISPROFILEMANAGED);
361 361
362 protected: 362 protected:
363 virtual ~DeveloperPrivateIsProfileManagedFunction(); 363 virtual ~DeveloperPrivateIsProfileManagedFunction();
364 364
365 // ExtensionFunction 365 // ExtensionFunction
366 virtual bool RunImpl() OVERRIDE; 366 virtual bool RunImpl() OVERRIDE;
367 }; 367 };
368 368
369 class DeveloperPrivateExportSyncfsFolderToLocalfsFunction 369 class DeveloperPrivateLoadDirectoryFunction
370 : public ChromeAsyncExtensionFunction { 370 : public ChromeAsyncExtensionFunction {
371 public: 371 public:
372 DECLARE_EXTENSION_FUNCTION("developerPrivate.exportSyncfsFolderToLocalfs", 372 DECLARE_EXTENSION_FUNCTION("developerPrivate.loadDirectory",
373 DEVELOPERPRIVATE_LOADUNPACKEDCROS); 373 DEVELOPERPRIVATE_LOADUNPACKEDCROS);
374 374
375 DeveloperPrivateExportSyncfsFolderToLocalfsFunction(); 375 DeveloperPrivateLoadDirectoryFunction();
376 376
377 protected: 377 protected:
378 virtual ~DeveloperPrivateExportSyncfsFolderToLocalfsFunction(); 378 virtual ~DeveloperPrivateLoadDirectoryFunction();
379 379
380 // ExtensionFunction 380 // ExtensionFunction
381 virtual bool RunImpl() OVERRIDE; 381 virtual bool RunImpl() OVERRIDE;
382 382
383 void ClearPrexistingDirectoryContent(const base::FilePath& project_path); 383 void ClearExistingDirectoryContent(const base::FilePath& project_path);
384 384
385 void ReadSyncFileSystemDirectory(const base::FilePath& project_path, 385 void ReadSyncFileSystemDirectory(const base::FilePath& project_path,
386 const base::FilePath& destination_path); 386 const base::FilePath& destination_path);
387 387
388 void ReadSyncFileSystemDirectoryCb( 388 void ReadSyncFileSystemDirectoryCb(
389 const base::FilePath& project_path, 389 const base::FilePath& project_path,
390 const base::FilePath& destination_path, 390 const base::FilePath& destination_path,
391 base::PlatformFileError result, 391 base::PlatformFileError result,
392 const fileapi::FileSystemOperation::FileEntryList& file_list, 392 const fileapi::FileSystemOperation::FileEntryList& file_list,
393 bool has_more); 393 bool has_more);
394 394
395 void SnapshotFileCallback( 395 void SnapshotFileCallback(
396 const base::FilePath& target_path, 396 const base::FilePath& target_path,
397 base::PlatformFileError result, 397 base::PlatformFileError result,
398 const base::PlatformFileInfo& file_info, 398 const base::PlatformFileInfo& file_info,
399 const base::FilePath& platform_path, 399 const base::FilePath& platform_path,
400 const scoped_refptr<webkit_blob::ShareableFileReference>& file_ref); 400 const scoped_refptr<webkit_blob::ShareableFileReference>& file_ref);
401 401
402 void CopyFile(const base::FilePath& src_path, 402 void CopyFile(const base::FilePath& src_path,
403 const base::FilePath& dest_path); 403 const base::FilePath& dest_path);
404 404
405 void Load();
406
405 scoped_refptr<fileapi::FileSystemContext> context_; 407 scoped_refptr<fileapi::FileSystemContext> context_;
406 408
409 std::string project_base_url_;
410 base::FilePath project_path_;
411
407 private: 412 private:
408 int pendingCopyOperationsCount_; 413 int pending_copy_operations_count_;
409 414
410 // This is set to false if any of the copyFile operations fail on 415 // This is set to false if any of the copyFile operations fail on
411 // call of the API. It is returned as a response of the API call. 416 // call of the API. It is returned as a response of the API call.
412 bool success_; 417 bool success_;
413 };
414 418
415 class DeveloperPrivateLoadProjectFunction 419 base::FilePath path_;
416 : public ChromeAsyncExtensionFunction {
417 public:
418 DECLARE_EXTENSION_FUNCTION("developerPrivate.loadProject",
419 DEVELOPERPRIVATE_LOADPROJECT);
420
421 DeveloperPrivateLoadProjectFunction();
422
423 protected:
424 virtual ~DeveloperPrivateLoadProjectFunction();
425
426 // ExtensionFunction
427 virtual bool RunImpl() OVERRIDE;
428
429 void GetUnpackedExtension(const base::FilePath& path,
430 const ExtensionSet* extensions);
431 }; 420 };
432 421
433 } // namespace api 422 } // namespace api
434 423
435 } // namespace extensions 424 } // namespace extensions
436 425
437 #endif // CHROME_BROWSER_EXTENSIONS_API_DEVELOPER_PRIVATE_DEVELOPER_PRIVATE_API _H_ 426 #endif // CHROME_BROWSER_EXTENSIONS_API_DEVELOPER_PRIVATE_DEVELOPER_PRIVATE_API _H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698