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

Unified Diff: webkit/browser/quota/mock_quota_manager_unittest.cc

Issue 15984016: Call scoped_refptr<T>::get() rather than relying on implicit "operator T*" (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased Created 7 years, 6 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/browser/quota/mock_quota_manager_unittest.cc
diff --git a/webkit/browser/quota/mock_quota_manager_unittest.cc b/webkit/browser/quota/mock_quota_manager_unittest.cc
index 41d9aa751021bf5b0fe9127ef769a99a0c200aec..36ff9a4c2a1c1ccbfcf026c4e061b924a2b275a2 100644
--- a/webkit/browser/quota/mock_quota_manager_unittest.cc
+++ b/webkit/browser/quota/mock_quota_manager_unittest.cc
@@ -44,8 +44,8 @@ class MockQuotaManagerTest : public testing::Test {
policy_ = new MockSpecialStoragePolicy;
manager_ = new MockQuotaManager(false /* is_incognito */,
data_dir_.path(),
- base::MessageLoopProxy::current(),
- base::MessageLoopProxy::current(),
+ base::MessageLoopProxy::current().get(),
+ base::MessageLoopProxy::current().get(),
policy_.get());
}
« no previous file with comments | « webkit/browser/fileapi/syncable/syncable_file_system_util_unittest.cc ('k') | webkit/browser/quota/quota_manager_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698