| 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
|
|
|