| 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_MOCK_REMOTE_FILE_SYNC_SERVICE_H_ | 5 #ifndef CHROME_BROWSER_SYNC_FILE_SYSTEM_MOCK_REMOTE_FILE_SYNC_SERVICE_H_ |
| 6 #define CHROME_BROWSER_SYNC_FILE_SYSTEM_MOCK_REMOTE_FILE_SYNC_SERVICE_H_ | 6 #define CHROME_BROWSER_SYNC_FILE_SYSTEM_MOCK_REMOTE_FILE_SYNC_SERVICE_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <memory> |
| 10 #include <string> | 11 #include <string> |
| 11 | 12 |
| 12 #include "base/macros.h" | 13 #include "base/macros.h" |
| 13 #include "base/memory/scoped_ptr.h" | |
| 14 #include "base/observer_list.h" | 14 #include "base/observer_list.h" |
| 15 #include "base/values.h" | 15 #include "base/values.h" |
| 16 #include "chrome/browser/sync_file_system/file_status_observer.h" | 16 #include "chrome/browser/sync_file_system/file_status_observer.h" |
| 17 #include "chrome/browser/sync_file_system/mock_local_change_processor.h" | 17 #include "chrome/browser/sync_file_system/mock_local_change_processor.h" |
| 18 #include "chrome/browser/sync_file_system/remote_change_processor.h" | 18 #include "chrome/browser/sync_file_system/remote_change_processor.h" |
| 19 #include "chrome/browser/sync_file_system/remote_file_sync_service.h" | 19 #include "chrome/browser/sync_file_system/remote_file_sync_service.h" |
| 20 #include "chrome/browser/sync_file_system/sync_callbacks.h" | 20 #include "chrome/browser/sync_file_system/sync_callbacks.h" |
| 21 #include "chrome/browser/sync_file_system/sync_direction.h" | 21 #include "chrome/browser/sync_file_system/sync_direction.h" |
| 22 #include "chrome/browser/sync_file_system/sync_file_metadata.h" | 22 #include "chrome/browser/sync_file_system/sync_file_metadata.h" |
| 23 #include "testing/gmock/include/gmock/gmock.h" | 23 #include "testing/gmock/include/gmock/gmock.h" |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 base::ObserverList<FileStatusObserver> file_status_observers_; | 92 base::ObserverList<FileStatusObserver> file_status_observers_; |
| 93 | 93 |
| 94 RemoteServiceState state_; | 94 RemoteServiceState state_; |
| 95 | 95 |
| 96 DISALLOW_COPY_AND_ASSIGN(MockRemoteFileSyncService); | 96 DISALLOW_COPY_AND_ASSIGN(MockRemoteFileSyncService); |
| 97 }; | 97 }; |
| 98 | 98 |
| 99 } // namespace sync_file_system | 99 } // namespace sync_file_system |
| 100 | 100 |
| 101 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_MOCK_REMOTE_FILE_SYNC_SERVICE_H_ | 101 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_MOCK_REMOTE_FILE_SYNC_SERVICE_H_ |
| OLD | NEW |