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

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

Issue 239993002: [fsp] Create a RequestManager per a ProvidedFileSystem instance. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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/provided_file_system_interface.h
diff --git a/chrome/browser/chromeos/file_system_provider/provided_file_system_interface.h b/chrome/browser/chromeos/file_system_provider/provided_file_system_interface.h
index dedb17f43deefd761b2a9e384be9d392e8f292c5..97f09c22ce4540a1efa85c0ed02f7efdf34cc967 100644
--- a/chrome/browser/chromeos/file_system_provider/provided_file_system_interface.h
+++ b/chrome/browser/chromeos/file_system_provider/provided_file_system_interface.h
@@ -30,6 +30,9 @@ class ProvidedFileSystemInterface {
// Returns a provided file system info for this file system.
virtual const ProvidedFileSystemInfo& GetFileSystemInfo() const = 0;
+
+ // Returns a request manager for the file system if exists, or NULL.
hashimoto 2014/04/16 04:14:13 Since the real implementation always returns a non
mtomasz 2014/04/16 05:08:10 NOTREACHED() sounds good to me. Done.
+ virtual RequestManager* GetRequestManager() = 0;
};
} // namespace file_system_provider

Powered by Google App Engine
This is Rietveld 408576698