|  | // Copyright 2013 The Chromium Authors | 
|  | // Use of this source code is governed by a BSD-style license that can be | 
|  | // found in the LICENSE file. | 
|  |  | 
|  | #ifndef CHROME_BROWSER_SYNC_FILE_SYSTEM_FILE_STATUS_OBSERVER_H_ | 
|  | #define CHROME_BROWSER_SYNC_FILE_SYSTEM_FILE_STATUS_OBSERVER_H_ | 
|  |  | 
|  | #include "chrome/browser/sync_file_system/sync_action.h" | 
|  | #include "chrome/browser/sync_file_system/sync_direction.h" | 
|  | #include "chrome/browser/sync_file_system/sync_file_status.h" | 
|  | #include "chrome/browser/sync_file_system/sync_file_type.h" | 
|  |  | 
|  | namespace storage { | 
|  | class FileSystemURL; | 
|  | } | 
|  |  | 
|  | namespace sync_file_system { | 
|  |  | 
|  | class FileStatusObserver { | 
|  | public: | 
|  | FileStatusObserver() {} | 
|  |  | 
|  | FileStatusObserver(const FileStatusObserver&) = delete; | 
|  | FileStatusObserver& operator=(const FileStatusObserver&) = delete; | 
|  |  | 
|  | virtual ~FileStatusObserver() {} | 
|  |  | 
|  | virtual void OnFileStatusChanged(const storage::FileSystemURL& url, | 
|  | SyncFileType file_type, | 
|  | SyncFileStatus sync_status, | 
|  | SyncAction action_taken, | 
|  | SyncDirection direction) = 0; | 
|  | }; | 
|  |  | 
|  | }  // namespace sync_file_system | 
|  |  | 
|  | #endif  // CHROME_BROWSER_SYNC_FILE_SYSTEM_FILE_STATUS_OBSERVER_H_ |