Chromium Code Reviews| Index: chrome/test/testing_profile.h |
| diff --git a/chrome/test/testing_profile.h b/chrome/test/testing_profile.h |
| index 07977bc2d35b8d5a516137e737aefb6848600ee6..eeff8736293ba4621eaf17f64bec4f8aaaf985c3 100644 |
| --- a/chrome/test/testing_profile.h |
| +++ b/chrome/test/testing_profile.h |
| @@ -182,6 +182,7 @@ class TestingProfile : public Profile { |
| virtual DownloadManager* GetDownloadManager(); |
| virtual PersonalDataManager* GetPersonalDataManager(); |
| virtual fileapi::FileSystemContext* GetFileSystemContext(); |
| + virtual void SetQuotaManager(quota::QuotaManager* manager); |
| virtual quota::QuotaManager* GetQuotaManager(); |
| virtual BrowserSignin* GetBrowserSignin(); |
| virtual bool HasCreatedDownloadManager() const; |
| @@ -390,6 +391,9 @@ class TestingProfile : public Profile { |
| ProfileDependencyManager* profile_dependency_manager_; |
| scoped_refptr<ChromeAppCacheService> appcache_service_; |
| + |
| + // The QuotaManager, created if GetQuotaManager is invoked. |
|
michaeln
2011/07/28 19:17:48
comment is stale
Mike West
2011/07/29 16:39:59
Done.
|
| + scoped_refptr<quota::QuotaManager> quota_manager_; |
| }; |
| #endif // CHROME_TEST_TESTING_PROFILE_H_ |