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

Unified Diff: chrome/browser/sync_file_system/local/sync_file_system_backend.cc

Issue 452043003: [ew] Add basic classes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed comments. Created 6 years, 4 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/sync_file_system/local/sync_file_system_backend.cc
diff --git a/chrome/browser/sync_file_system/local/sync_file_system_backend.cc b/chrome/browser/sync_file_system/local/sync_file_system_backend.cc
index 50e5b94701800c7dd95475675e9defa8b3fe333b..644a01a4d949523bca34f8958ecf1b7121e5f292 100644
--- a/chrome/browser/sync_file_system/local/sync_file_system_backend.cc
+++ b/chrome/browser/sync_file_system/local/sync_file_system_backend.cc
@@ -4,6 +4,8 @@
#include "chrome/browser/sync_file_system/local/sync_file_system_backend.h"
+#include <string>
+
#include "base/logging.h"
#include "chrome/browser/chrome_notification_types.h"
#include "chrome/browser/sync_file_system/local/local_file_change_tracker.h"
@@ -139,6 +141,11 @@ fileapi::AsyncFileUtil* SyncFileSystemBackend::GetAsyncFileUtil(
return GetDelegate()->file_util();
}
+fileapi::WatcherManager* SyncFileSystemBackend::GetWatcherManager(
+ fileapi::FileSystemType type) {
+ return NULL;
+}
+
fileapi::CopyOrMoveFileValidatorFactory*
SyncFileSystemBackend::GetCopyOrMoveFileValidatorFactory(
fileapi::FileSystemType type,

Powered by Google App Engine
This is Rietveld 408576698