| Index: chrome/browser/browsing_data/browsing_data_indexed_db_helper.cc
|
| diff --git a/chrome/browser/browsing_data/browsing_data_indexed_db_helper.cc b/chrome/browser/browsing_data/browsing_data_indexed_db_helper.cc
|
| index 1ac6c0e9377f4964584ec8d0b30eb305451b59b6..7724b414f1a62e0cf0ae2ffb7f5511db18f243bc 100644
|
| --- a/chrome/browser/browsing_data/browsing_data_indexed_db_helper.cc
|
| +++ b/chrome/browser/browsing_data/browsing_data_indexed_db_helper.cc
|
| @@ -231,13 +231,13 @@ void CannedBrowsingDataIndexedDBHelper::ConvertPendingInfoInWebKitThread() {
|
| for (std::set<PendingIndexedDBInfo>::const_iterator
|
| pending_info = pending_indexed_db_info_.begin();
|
| pending_info != pending_indexed_db_info_.end(); ++pending_info) {
|
| - IndexedDBInfo info(pending_info->origin, 0, base::Time());
|
| + IndexedDBInfo info(pending_info->origin, 0, base::Time(), base::FilePath());
|
| indexed_db_info_.push_back(info);
|
| }
|
|
|
| - BrowserThread::PostTask(
|
| - BrowserThread::UI, FROM_HERE,
|
| - base::Bind(&CannedBrowsingDataIndexedDBHelper::NotifyInUIThread, this));
|
| + BrowserThread::PostTask(
|
| + BrowserThread::UI, FROM_HERE,
|
| + base::Bind(&CannedBrowsingDataIndexedDBHelper::NotifyInUIThread, this));
|
| }
|
|
|
| void CannedBrowsingDataIndexedDBHelper::NotifyInUIThread() {
|
|
|