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

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

Issue 1088883002: Add events for configuring and adding new providers to FSP API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed. Created 5 years, 8 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/fake_provided_file_system.cc
diff --git a/chrome/browser/chromeos/file_system_provider/fake_provided_file_system.cc b/chrome/browser/chromeos/file_system_provider/fake_provided_file_system.cc
index ee73b27e62add582b47f4f17ea350e8648b4d007..7081d600c7993052bc3112d14bcff177e2f6de67 100644
--- a/chrome/browser/chromeos/file_system_provider/fake_provided_file_system.cc
+++ b/chrome/browser/chromeos/file_system_provider/fake_provided_file_system.cc
@@ -372,6 +372,12 @@ void FakeProvidedFileSystem::Notify(
callback.Run(base::File::FILE_ERROR_SECURITY);
}
+void FakeProvidedFileSystem::Configure(
+ const storage::AsyncFileUtil::StatusCallback& callback) {
+ NOTREACHED();
+ callback.Run(base::File::FILE_ERROR_SECURITY);
+}
+
ProvidedFileSystemInterface* FakeProvidedFileSystem::Create(
Profile* profile,
const ProvidedFileSystemInfo& file_system_info) {

Powered by Google App Engine
This is Rietveld 408576698