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/browser/fileapi/syncable/syncable_file_system_util.h" |
6 | 6 |
7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
8 #include "webkit/browser/fileapi/external_mount_points.h" | 8 #include "webkit/browser/fileapi/external_mount_points.h" |
9 #include "webkit/browser/fileapi/file_observers.h" | 9 #include "webkit/browser/fileapi/file_observers.h" |
10 #include "webkit/browser/fileapi/file_system_context.h" | 10 #include "webkit/browser/fileapi/file_system_context.h" |
11 #include "webkit/browser/fileapi/sandbox_mount_point_provider.h" | 11 #include "webkit/browser/fileapi/sandbox_mount_point_provider.h" |
12 #include "webkit/common/fileapi/file_system_util.h" | 12 #include "webkit/common/fileapi/file_system_util.h" |
13 | 13 |
14 using fileapi::ExternalMountPoints; | 14 using fileapi::ExternalMountPoints; |
15 using fileapi::FileSystemContext; | 15 using fileapi::FileSystemContext; |
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 is_directory_operation_enabled = flag; | 101 is_directory_operation_enabled = flag; |
102 } | 102 } |
103 | 103 |
104 bool IsSyncFSDirectoryOperationEnabled() { | 104 bool IsSyncFSDirectoryOperationEnabled() { |
105 return is_directory_operation_enabled || | 105 return is_directory_operation_enabled || |
106 CommandLine::ForCurrentProcess()->HasSwitch( | 106 CommandLine::ForCurrentProcess()->HasSwitch( |
107 kEnableSyncFSDirectoryOperation); | 107 kEnableSyncFSDirectoryOperation); |
108 } | 108 } |
109 | 109 |
110 } // namespace sync_file_system | 110 } // namespace sync_file_system |
OLD | NEW |