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_CHROMEOS_DRIVE_FILE_SYSTEM_OPERATION_OBSERVER_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_DRIVE_FILE_SYSTEM_OPERATION_OBSERVER_H_ |
6 #define CHROME_BROWSER_CHROMEOS_DRIVE_FILE_SYSTEM_OPERATION_OBSERVER_H_ | 6 #define CHROME_BROWSER_CHROMEOS_DRIVE_FILE_SYSTEM_OPERATION_OBSERVER_H_ |
7 | 7 |
8 namespace base { | 8 namespace base { |
9 class FilePath; | 9 class FilePath; |
10 } | 10 } |
11 | 11 |
12 namespace drive { | 12 namespace drive { |
13 namespace file_system { | 13 namespace file_system { |
14 | 14 |
15 // Passes notifications from Drive operations back to the file system. | 15 // Passes notifications from Drive operations back to the file system. |
16 class OperationObserver { | 16 class OperationObserver { |
17 public: | 17 public: |
18 // Sent when a content of a directory has been changed. | 18 // Sent when a content of a directory has been changed. |
19 // |directory_path| is a virtual directory path representing the | 19 // |directory_path| is a virtual directory path representing the |
20 // changed directory. | 20 // changed directory. |
21 virtual void OnDirectoryChangedByOperation( | 21 virtual void OnDirectoryChangedByOperation( |
22 const base::FilePath& directory_path) = 0; | 22 const base::FilePath& directory_path) = 0; |
| 23 |
| 24 // Sent when a cache file is modified and upload is needed. |
| 25 virtual void OnCacheFileUploadNeededByOperation( |
| 26 const std::string& resource_id) = 0; |
23 }; | 27 }; |
24 | 28 |
25 } // namespace file_system | 29 } // namespace file_system |
26 } // namespace drive | 30 } // namespace drive |
27 | 31 |
28 #endif // CHROME_BROWSER_CHROMEOS_DRIVE_FILE_SYSTEM_OPERATION_OBSERVER_H_ | 32 #endif // CHROME_BROWSER_CHROMEOS_DRIVE_FILE_SYSTEM_OPERATION_OBSERVER_H_ |
OLD | NEW |