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

Unified Diff: content/worker/worker_webkitclient_impl.cc

Issue 7037018: DB quota (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 7 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: content/worker/worker_webkitclient_impl.cc
===================================================================
--- content/worker/worker_webkitclient_impl.cc (revision 85641)
+++ content/worker/worker_webkitclient_impl.cc (working copy)
@@ -196,6 +196,11 @@
return DatabaseUtil::databaseGetFileSize(vfs_file_name);
}
+long long WorkerWebKitClientImpl::databaseGetSpaceAvailableForOrigin(
+ const WebString& origin_identifier) {
+ return DatabaseUtil::databaseGetSpaceAvailable(origin_identifier);
+}
+
WebMimeRegistry::SupportsType WorkerWebKitClientImpl::supportsMIMEType(
const WebString&) {
return WebMimeRegistry::IsSupported;

Powered by Google App Engine
This is Rietveld 408576698