| Index: content/browser/in_process_webkit/indexed_db_quota_client_unittest.cc
|
| ===================================================================
|
| --- content/browser/in_process_webkit/indexed_db_quota_client_unittest.cc (revision 122771)
|
| +++ content/browser/in_process_webkit/indexed_db_quota_client_unittest.cc (working copy)
|
| @@ -42,11 +42,13 @@
|
| usage_(0),
|
| weak_factory_(ALLOW_THIS_IN_INITIALIZER_LIST(this)),
|
| message_loop_(MessageLoop::TYPE_IO),
|
| + db_thread_(BrowserThread::DB, &message_loop_),
|
| webkit_thread_(BrowserThread::WEBKIT_DEPRECATED, &message_loop_),
|
| - file_thread_(BrowserThread::FILE_USER_BLOCKING, &message_loop_),
|
| + file_thread_(BrowserThread::FILE, &message_loop_),
|
| + file_user_blocking_thread_(
|
| + BrowserThread::FILE_USER_BLOCKING, &message_loop_),
|
| io_thread_(BrowserThread::IO, &message_loop_) {
|
| - TestBrowserContext browser_context;
|
| - idb_context_ = BrowserContext::GetWebKitContext(&browser_context)->
|
| + idb_context_ = BrowserContext::GetWebKitContext(&browser_context_)->
|
| indexed_db_context();
|
| setup_temp_dir();
|
| }
|
| @@ -160,9 +162,12 @@
|
| scoped_refptr<IndexedDBContext> idb_context_;
|
| base::WeakPtrFactory<IndexedDBQuotaClientTest> weak_factory_;
|
| MessageLoop message_loop_;
|
| + BrowserThreadImpl db_thread_;
|
| BrowserThreadImpl webkit_thread_;
|
| BrowserThreadImpl file_thread_;
|
| + BrowserThreadImpl file_user_blocking_thread_;
|
| BrowserThreadImpl io_thread_;
|
| + TestBrowserContext browser_context_;
|
| quota::QuotaStatusCode delete_status_;
|
| };
|
|
|
|
|