| OLD | NEW |
| 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 #include "webkit/fileapi/syncable/syncable_file_system_util.h" | 5 #include "webkit/fileapi/syncable/syncable_file_system_util.h" |
| 6 | 6 |
| 7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
| 8 #include "webkit/fileapi/external_mount_points.h" | 8 #include "webkit/fileapi/external_mount_points.h" |
| 9 #include "webkit/fileapi/file_observers.h" | 9 #include "webkit/fileapi/file_observers.h" |
| 10 #include "webkit/fileapi/file_system_context.h" | 10 #include "webkit/fileapi/file_system_context.h" |
| 11 #include "webkit/fileapi/file_system_util.h" | 11 #include "webkit/fileapi/file_system_util.h" |
| 12 #include "webkit/fileapi/sandbox_mount_point_provider.h" | 12 #include "webkit/fileapi/sandbox_mount_point_provider.h" |
| 13 | 13 |
| 14 using fileapi::ExternalMountPoints; | 14 using fileapi::ExternalMountPoints; |
| 15 using fileapi::FileSystemContext; | 15 using fileapi::FileSystemContext; |
| 16 using fileapi::FileSystemURL; | 16 using fileapi::FileSystemURL; |
| 17 using fileapi::LocalFileSystemOperation; | 17 using fileapi::LocalFileSystemOperation; |
| 18 | 18 |
| 19 namespace sync_file_system { | 19 namespace sync_file_system { |
| 20 | 20 |
| 21 namespace { | 21 namespace { |
| 22 | 22 |
| 23 // A command switch to enable syncing directory operations in Sync FileSystem | 23 // A command switch to enable syncing directory operations in Sync FileSystem |
| 24 // API. (http://crbug.com/161442) | 24 // API. (http://crbug.com/161442) |
| 25 // TODO(kinuko): this command-line switch should be temporary. | 25 // TODO(kinuko): this command-line switch should be temporary. |
| 26 const char kEnableSyncDirectoryOperation[] = "enable-sync-directory-operation"; | 26 const char kEnableSyncDirectoryOperation[] = |
| 27 "enable-syncfs-directory-operation"; |
| 27 | 28 |
| 28 bool is_directory_operation_enabled = false; | 29 bool is_directory_operation_enabled = false; |
| 29 | 30 |
| 30 } | 31 } |
| 31 | 32 |
| 32 bool RegisterSyncableFileSystem(const std::string& service_name) { | 33 bool RegisterSyncableFileSystem(const std::string& service_name) { |
| 33 return ExternalMountPoints::GetSystemInstance()->RegisterFileSystem( | 34 return ExternalMountPoints::GetSystemInstance()->RegisterFileSystem( |
| 34 service_name, fileapi::kFileSystemTypeSyncable, base::FilePath()); | 35 service_name, fileapi::kFileSystemTypeSyncable, base::FilePath()); |
| 35 } | 36 } |
| 36 | 37 |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 is_directory_operation_enabled = flag; | 101 is_directory_operation_enabled = flag; |
| 101 } | 102 } |
| 102 | 103 |
| 103 bool IsSyncDirectoryOperationEnabled() { | 104 bool IsSyncDirectoryOperationEnabled() { |
| 104 return is_directory_operation_enabled || | 105 return is_directory_operation_enabled || |
| 105 CommandLine::ForCurrentProcess()->HasSwitch( | 106 CommandLine::ForCurrentProcess()->HasSwitch( |
| 106 kEnableSyncDirectoryOperation); | 107 kEnableSyncDirectoryOperation); |
| 107 } | 108 } |
| 108 | 109 |
| 109 } // namespace sync_file_system | 110 } // namespace sync_file_system |
| OLD | NEW |