diff options
author | dgrogan@chromium.org <dgrogan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-05-27 20:02:53 +0000 |
---|---|---|
committer | dgrogan@chromium.org <dgrogan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-05-27 20:02:53 +0000 |
commit | 55775cc217406277d7591c22f5d7abec91773edc (patch) | |
tree | 5816c1ae354507caba99414ba4270d2bf3e0b13a /chrome/test/testing_profile.cc | |
parent | 2e1bf22cf64866453438d5e46ce42b7c5c4ee49a (diff) | |
download | chromium_src-55775cc217406277d7591c22f5d7abec91773edc.zip chromium_src-55775cc217406277d7591c22f5d7abec91773edc.tar.gz chromium_src-55775cc217406277d7591c22f5d7abec91773edc.tar.bz2 |
Initial IndexedDBQuotaClient implementation
* Heavily based off of DatabaseQuotaClient.
* Only responds to one request so far, GetOriginUsage.
BUG=83652
TEST=llvm/Debug/unit_tests --gtest_filter=IndexedDB*
Review URL: http://codereview.chromium.org/7053030
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@87076 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test/testing_profile.cc')
-rw-r--r-- | chrome/test/testing_profile.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/test/testing_profile.cc b/chrome/test/testing_profile.cc index 3604f9d..12e6c1e 100644 --- a/chrome/test/testing_profile.cc +++ b/chrome/test/testing_profile.cc @@ -680,7 +680,7 @@ WebKitContext* TestingProfile::GetWebKitContext() { webkit_context_ = new WebKitContext( IsOffTheRecord(), GetPath(), GetExtensionSpecialStoragePolicy(), - false); + false, NULL, NULL); } return webkit_context_; } |