summaryrefslogtreecommitdiffstats
path: root/chrome/test/testing_profile.cc
diff options
context:
space:
mode:
authorkinuko@chromium.org <kinuko@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-04-27 13:20:14 +0000
committerkinuko@chromium.org <kinuko@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-04-27 13:20:14 +0000
commit595765cf3c42fda899d308e6f875dd5627837989 (patch)
treeca06cb28f9a65f472011b0dc5f94d9b0ee9f653c /chrome/test/testing_profile.cc
parent216f6923c677b509de56a4735f91eafdd21d6fc2 (diff)
downloadchromium_src-595765cf3c42fda899d308e6f875dd5627837989.zip
chromium_src-595765cf3c42fda899d308e6f875dd5627837989.tar.gz
chromium_src-595765cf3c42fda899d308e6f875dd5627837989.tar.bz2
Add 1st cut of QuotaManager code
No persistent storage support yet. Some notes: - There are a lot of TODOs especially for persistent type storage handling. - QuotaTask base class is for now only subclassed by QuotaInitializeTask, but it is planned to add more subclasses. BUG=61676,79639 TEST=QuotaManagerTest.* Review URL: http://codereview.chromium.org/6826052 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@83145 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test/testing_profile.cc')
-rw-r--r--chrome/test/testing_profile.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/chrome/test/testing_profile.cc b/chrome/test/testing_profile.cc
index a1565c1..560c603 100644
--- a/chrome/test/testing_profile.cc
+++ b/chrome/test/testing_profile.cc
@@ -541,6 +541,10 @@ fileapi::FileSystemContext* TestingProfile::GetFileSystemContext() {
return NULL;
}
+quota::QuotaManager* TestingProfile::GetQuotaManager() {
+ return NULL;
+}
+
BrowserSignin* TestingProfile::GetBrowserSignin() {
return NULL;
}