Index: chrome/browser/chromeos/file_system_provider/fake_provided_file_system.h |
diff --git a/chrome/browser/chromeos/file_system_provider/fake_provided_file_system.h b/chrome/browser/chromeos/file_system_provider/fake_provided_file_system.h |
index aa24683cc3fd82e96bff640f5b885dddfeb2fc22..52d0ae617b8d7d9ad0deeb53031d815d4b7b7905 100644 |
--- a/chrome/browser/chromeos/file_system_provider/fake_provided_file_system.h |
+++ b/chrome/browser/chromeos/file_system_provider/fake_provided_file_system.h |
@@ -131,17 +131,18 @@ class FakeProvidedFileSystem : public ProvidedFileSystemInterface { |
const storage::AsyncFileUtil::StatusCallback& callback) override; |
virtual void UnobserveEntry( |
const base::FilePath& entry_path, |
+ bool recursive, |
const storage::AsyncFileUtil::StatusCallback& callback) override; |
virtual const ProvidedFileSystemInfo& GetFileSystemInfo() const override; |
virtual RequestManager* GetRequestManager() override; |
virtual ObservedEntries* GetObservedEntries() override; |
virtual void AddObserver(ProvidedFileSystemObserver* observer) override; |
virtual void RemoveObserver(ProvidedFileSystemObserver* observer) override; |
- virtual bool Notify( |
- const base::FilePath& observed_path, |
- ProvidedFileSystemObserver::ChangeType change_type, |
- scoped_ptr<ProvidedFileSystemObserver::ChildChanges> child_changes, |
- const std::string& tag) override; |
+ virtual bool Notify(const base::FilePath& observed_path, |
+ bool recursive, |
+ ProvidedFileSystemObserver::ChangeType change_type, |
+ scoped_ptr<ProvidedFileSystemObserver::Changes> changes, |
+ const std::string& tag) override; |
virtual base::WeakPtr<ProvidedFileSystemInterface> GetWeakPtr() override; |
// Factory callback, to be used in Service::SetFileSystemFactory(). The |