Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(21)

Side by Side Diff: chrome/browser/chromeos/drive/file_system/operation_observer.h

Issue 16628003: drive: Remove FileCacheObserver::OnCacheCommitted (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix PinAndUnpin Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698