| Index: chrome/browser/browsing_data/browsing_data_quota_helper_unittest.cc
|
| diff --git a/chrome/browser/browsing_data/browsing_data_quota_helper_unittest.cc b/chrome/browser/browsing_data/browsing_data_quota_helper_unittest.cc
|
| index 0c9827d31d236fe03eb7174944d81927e6db45c1..ce0b511383162896f61a8b7f5261843ee96d40d2 100644
|
| --- a/chrome/browser/browsing_data/browsing_data_quota_helper_unittest.cc
|
| +++ b/chrome/browser/browsing_data/browsing_data_quota_helper_unittest.cc
|
| @@ -35,13 +35,14 @@ class BrowsingDataQuotaHelperTest : public testing::Test {
|
| virtual void SetUp() OVERRIDE {
|
| EXPECT_TRUE(dir_.CreateUniqueTempDir());
|
| quota_manager_ = new quota::QuotaManager(
|
| - false, dir_.path(),
|
| - BrowserThread::GetMessageLoopProxyForThread(BrowserThread::IO),
|
| - BrowserThread::GetMessageLoopProxyForThread(BrowserThread::DB),
|
| + false,
|
| + dir_.path(),
|
| + BrowserThread::GetMessageLoopProxyForThread(BrowserThread::IO).get(),
|
| + BrowserThread::GetMessageLoopProxyForThread(BrowserThread::DB).get(),
|
| NULL);
|
| helper_ = new BrowsingDataQuotaHelperImpl(
|
| - BrowserThread::GetMessageLoopProxyForThread(BrowserThread::UI),
|
| - BrowserThread::GetMessageLoopProxyForThread(BrowserThread::IO),
|
| + BrowserThread::GetMessageLoopProxyForThread(BrowserThread::UI).get(),
|
| + BrowserThread::GetMessageLoopProxyForThread(BrowserThread::IO).get(),
|
| quota_manager_.get());
|
| }
|
|
|
|
|