| Index: chrome/test/testing_profile.cc
|
| diff --git a/chrome/test/testing_profile.cc b/chrome/test/testing_profile.cc
|
| index 0fc134b4cf4a4d960f8efb7f88ea5500e33d8ecc..717f236c2698a8a279e1dddca1bce7a84ded48aa 100644
|
| --- a/chrome/test/testing_profile.cc
|
| +++ b/chrome/test/testing_profile.cc
|
| @@ -59,6 +59,7 @@
|
| #include "webkit/database/database_tracker.h"
|
| #include "webkit/fileapi/file_system_context.h"
|
| #include "webkit/quota/quota_manager.h"
|
| +#include "webkit/quota/mock_quota_manager.h"
|
|
|
| using base::Time;
|
| using testing::NiceMock;
|
| @@ -543,8 +544,12 @@ fileapi::FileSystemContext* TestingProfile::GetFileSystemContext() {
|
| return file_system_context_.get();
|
| }
|
|
|
| +void TestingProfile::SetQuotaManager(quota::QuotaManager* manager) {
|
| + quota_manager_ = manager;
|
| +}
|
| +
|
| quota::QuotaManager* TestingProfile::GetQuotaManager() {
|
| - return NULL;
|
| + return quota_manager_.get();
|
| }
|
|
|
| BrowserSignin* TestingProfile::GetBrowserSignin() {
|
|
|