| Index: chrome/browser/chromeos/file_system_provider/service.cc
|
| diff --git a/chrome/browser/chromeos/file_system_provider/service.cc b/chrome/browser/chromeos/file_system_provider/service.cc
|
| index f40467d46edd1309eaef72cec0afcbd215be670c..e47049057c1a17c561b22672c22990cc11679ef7 100644
|
| --- a/chrome/browser/chromeos/file_system_provider/service.cc
|
| +++ b/chrome/browser/chromeos/file_system_provider/service.cc
|
| @@ -337,13 +337,15 @@ void Service::OnObservedEntryChanged(
|
|
|
| void Service::OnObservedEntryTagUpdated(
|
| const ProvidedFileSystemInfo& file_system_info,
|
| - const base::FilePath& observed_path) {
|
| + const base::FilePath& observed_path,
|
| + const std::string& tag) {
|
| // TODO(mtomasz): Store tags of observed entries in preferences, or better
|
| // in leveldb.
|
| }
|
|
|
| void Service::OnObservedEntryListChanged(
|
| - const ProvidedFileSystemInfo& file_system_info) {
|
| + const ProvidedFileSystemInfo& file_system_info,
|
| + const ObservedEntries& observed_entries) {
|
| // TODO(mtomasz): Store observed entries in preferences or leveldb.
|
| }
|
|
|
|
|