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

Side by Side Diff: webkit/browser/quota/mock_quota_manager_unittest.cc

Issue 16155009: Update webkit/ to use scoped_refptr<T>::get() rather than implicit "operator T*" (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 5
6 #include <set> 6 #include <set>
7 7
8 #include "base/bind.h" 8 #include "base/bind.h"
9 #include "base/file_util.h" 9 #include "base/file_util.h"
10 #include "base/files/scoped_temp_dir.h" 10 #include "base/files/scoped_temp_dir.h"
(...skipping 24 matching lines...) Expand all
35 class MockQuotaManagerTest : public testing::Test { 35 class MockQuotaManagerTest : public testing::Test {
36 public: 36 public:
37 MockQuotaManagerTest() 37 MockQuotaManagerTest()
38 : weak_factory_(this), 38 : weak_factory_(this),
39 deletion_callback_count_(0) { 39 deletion_callback_count_(0) {
40 } 40 }
41 41
42 virtual void SetUp() { 42 virtual void SetUp() {
43 ASSERT_TRUE(data_dir_.CreateUniqueTempDir()); 43 ASSERT_TRUE(data_dir_.CreateUniqueTempDir());
44 policy_ = new MockSpecialStoragePolicy; 44 policy_ = new MockSpecialStoragePolicy;
45 manager_ = new MockQuotaManager( 45 manager_ = new MockQuotaManager(false /* is_incognito */,
46 false /* is_incognito */, 46 data_dir_.path(),
47 data_dir_.path(), 47 base::MessageLoopProxy::current(),
48 base::MessageLoopProxy::current(), 48 base::MessageLoopProxy::current(),
49 base::MessageLoopProxy::current(), 49 policy_.get());
50 policy_);
51 } 50 }
52 51
53 virtual void TearDown() { 52 virtual void TearDown() {
54 // Make sure the quota manager cleans up correctly. 53 // Make sure the quota manager cleans up correctly.
55 manager_ = NULL; 54 manager_ = NULL;
56 base::MessageLoop::current()->RunUntilIdle(); 55 base::MessageLoop::current()->RunUntilIdle();
57 } 56 }
58 57
59 void GetModifiedOrigins(StorageType type, base::Time since) { 58 void GetModifiedOrigins(StorageType type, base::Time since) {
60 manager_->GetOriginsModifiedSince( 59 manager_->GetOriginsModifiedSince(
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after
214 213
215 GetModifiedOrigins(kTemporary, now - a_minute); 214 GetModifiedOrigins(kTemporary, now - a_minute);
216 base::MessageLoop::current()->RunUntilIdle(); 215 base::MessageLoop::current()->RunUntilIdle();
217 216
218 EXPECT_EQ(kTemporary, type()); 217 EXPECT_EQ(kTemporary, type());
219 EXPECT_EQ(1UL, origins().size()); 218 EXPECT_EQ(1UL, origins().size());
220 EXPECT_EQ(0UL, origins().count(kOrigin1)); 219 EXPECT_EQ(0UL, origins().count(kOrigin1));
221 EXPECT_EQ(1UL, origins().count(kOrigin2)); 220 EXPECT_EQ(1UL, origins().count(kOrigin2));
222 } 221 }
223 } // Namespace quota 222 } // Namespace quota
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698