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

Unified Diff: webkit/support/simple_database_system.cc

Issue 7056025: More WebSQLDatabase and QuotaManager integration. (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: webkit/support/simple_database_system.cc
===================================================================
--- webkit/support/simple_database_system.cc (revision 86537)
+++ webkit/support/simple_database_system.cc (working copy)
@@ -155,12 +155,11 @@
int64 estimated_size) {
DCHECK(db_thread_proxy_->BelongsToCurrentThread());
int64 database_size = 0;
- int64 space_available_not_used = 0;
db_tracker_->DatabaseOpened(
origin_identifier, database_name, description,
- estimated_size, &database_size, &space_available_not_used);
+ estimated_size, &database_size);
OnDatabaseSizeChanged(origin_identifier, database_name,
- database_size, 0);
+ database_size);
}
void SimpleDatabaseSystem::DatabaseModified(const string16& origin_identifier,
@@ -179,8 +178,7 @@
void SimpleDatabaseSystem::OnDatabaseSizeChanged(
const string16& origin_identifier,
const string16& database_name,
- int64 database_size,
- int64 space_available_not_used) {
+ int64 database_size) {
DCHECK(db_thread_proxy_->BelongsToCurrentThread());
// We intentionally call into webkit on our background db_thread_
// to better emulate what happens in chrome where this method is
« webkit/database/database_tracker.cc ('K') | « webkit/support/simple_database_system.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698