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

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

Issue 239993002: [fsp] Create a RequestManager per a ProvidedFileSystem instance. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed and rebased. Created 6 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.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 5f829227174fd037082f8623e1f38642d62b3228..a77c7fcf9e4425f710d8660bc4abc383d0d4202c 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
@@ -31,12 +31,12 @@ class FakeProvidedFileSystem : public ProvidedFileSystemInterface {
virtual bool RequestUnmount(
const fileapi::AsyncFileUtil::StatusCallback& callback) OVERRIDE;
virtual const ProvidedFileSystemInfo& GetFileSystemInfo() const OVERRIDE;
+ virtual RequestManager* GetRequestManager() OVERRIDE;
- // Factory callback, to be used in Service::SetFileSystemFactory(). Both
- // |event_router| and |request_manager| arguments can be NULL.
+ // Factory callback, to be used in Service::SetFileSystemFactory(). The
+ // |event_router| argument can be NULL.
static ProvidedFileSystemInterface* Create(
extensions::EventRouter* event_router,
- RequestManager* request_manager,
const ProvidedFileSystemInfo& file_system_info);
private:

Powered by Google App Engine
This is Rietveld 408576698