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 #ifndef CHROME_BROWSER_SYNC_FILE_SYSTEM_LOCAL_CHANGE_PROCESSOR_H_ | 5 #ifndef CHROME_BROWSER_SYNC_FILE_SYSTEM_LOCAL_CHANGE_PROCESSOR_H_ |
6 #define CHROME_BROWSER_SYNC_FILE_SYSTEM_LOCAL_CHANGE_PROCESSOR_H_ | 6 #define CHROME_BROWSER_SYNC_FILE_SYSTEM_LOCAL_CHANGE_PROCESSOR_H_ |
7 | 7 |
8 #include "base/callback_forward.h" | 8 #include "base/callback_forward.h" |
9 #include "webkit/fileapi/syncable/sync_callbacks.h" | 9 #include "webkit/browser/fileapi/syncable/sync_callbacks.h" |
10 | 10 |
11 namespace fileapi { | 11 namespace fileapi { |
12 class FileSystemURL; | 12 class FileSystemURL; |
13 } | 13 } |
14 | 14 |
15 namespace sync_file_system { | 15 namespace sync_file_system { |
16 | 16 |
17 class FileChange; | 17 class FileChange; |
18 | 18 |
19 // Represents an interface to process one local change and applies | 19 // Represents an interface to process one local change and applies |
(...skipping 18 matching lines...) Expand all Loading... |
38 const fileapi::FileSystemURL& url, | 38 const fileapi::FileSystemURL& url, |
39 const SyncStatusCallback& callback) = 0; | 39 const SyncStatusCallback& callback) = 0; |
40 | 40 |
41 private: | 41 private: |
42 DISALLOW_COPY_AND_ASSIGN(LocalChangeProcessor); | 42 DISALLOW_COPY_AND_ASSIGN(LocalChangeProcessor); |
43 }; | 43 }; |
44 | 44 |
45 } // namespace sync_file_system | 45 } // namespace sync_file_system |
46 | 46 |
47 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_LOCAL_CHANGE_PROCESSOR_H_ | 47 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_LOCAL_CHANGE_PROCESSOR_H_ |
OLD | NEW |