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

Unified Diff: chrome/browser/chromeos/file_system_provider/service.cc

Issue 663713002: [fsp] Extract ObservedEntry and ObservedEntries to a separate file. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git/+/master
Patch Set: Added missing files. Created 6 years, 2 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 side-by-side diff with in-line comments
Download patch
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.
}

Powered by Google App Engine
This is Rietveld 408576698