| 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_SYNC_EVENT_OBSERVER_H_ | 5 #ifndef CHROME_BROWSER_SYNC_FILE_SYSTEM_SYNC_EVENT_OBSERVER_H_ |
| 6 #define CHROME_BROWSER_SYNC_FILE_SYSTEM_SYNC_EVENT_OBSERVER_H_ | 6 #define CHROME_BROWSER_SYNC_FILE_SYSTEM_SYNC_EVENT_OBSERVER_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/macros.h" |
| 10 #include "chrome/browser/sync_file_system/file_status_observer.h" | 11 #include "chrome/browser/sync_file_system/file_status_observer.h" |
| 11 #include "chrome/browser/sync_file_system/sync_service_state.h" | 12 #include "chrome/browser/sync_file_system/sync_service_state.h" |
| 12 | 13 |
| 13 class GURL; | 14 class GURL; |
| 14 | 15 |
| 15 namespace storage { | 16 namespace storage { |
| 16 class FileSystemURL; | 17 class FileSystemURL; |
| 17 } | 18 } |
| 18 | 19 |
| 19 namespace sync_file_system { | 20 namespace sync_file_system { |
| (...skipping 17 matching lines...) Expand all Loading... |
| 37 SyncAction action, | 38 SyncAction action, |
| 38 SyncDirection direction) = 0; | 39 SyncDirection direction) = 0; |
| 39 | 40 |
| 40 private: | 41 private: |
| 41 DISALLOW_COPY_AND_ASSIGN(SyncEventObserver); | 42 DISALLOW_COPY_AND_ASSIGN(SyncEventObserver); |
| 42 }; | 43 }; |
| 43 | 44 |
| 44 } // namespace sync_file_system | 45 } // namespace sync_file_system |
| 45 | 46 |
| 46 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_SYNC_EVENT_OBSERVER_H_ | 47 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_SYNC_EVENT_OBSERVER_H_ |
| OLD | NEW |