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

Side by Side Diff: webkit/browser/fileapi/syncable/syncable_file_system_util.cc

Issue 15806012: Move webkit/fileapi/syncable/* code to webkit/browser/fileapi (final!) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
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 unified diff | Download patch | Annotate | Revision Log
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 #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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698