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

Side by Side Diff: chrome/browser/invalidation/invalidator_storage_unittest.cc

Issue 14113053: chrome: Use base::MessageLoop. (Part 3) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase again 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
« no previous file with comments | « chrome/browser/intranet_redirect_detector.cc ('k') | chrome/browser/jankometer.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 #include "chrome/browser/invalidation/invalidator_storage.h" 5 #include "chrome/browser/invalidation/invalidator_storage.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/message_loop.h" 8 #include "base/message_loop.h"
9 #include "base/message_loop/message_loop_proxy.h" 9 #include "base/message_loop/message_loop_proxy.h"
10 #include "base/prefs/pref_service.h" 10 #include "base/prefs/pref_service.h"
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 } 51 }
52 52
53 protected: 53 protected:
54 TestingPrefServiceSyncable pref_service_; 54 TestingPrefServiceSyncable pref_service_;
55 55
56 const invalidation::ObjectId kBookmarksId_; 56 const invalidation::ObjectId kBookmarksId_;
57 const invalidation::ObjectId kPreferencesId_; 57 const invalidation::ObjectId kPreferencesId_;
58 const invalidation::ObjectId kAppNotificationsId_; 58 const invalidation::ObjectId kAppNotificationsId_;
59 const invalidation::ObjectId kAutofillId_; 59 const invalidation::ObjectId kAutofillId_;
60 60
61 MessageLoop loop_; 61 base::MessageLoop loop_;
62 }; 62 };
63 63
64 // Set invalidation states for various keys and verify that they are written and 64 // Set invalidation states for various keys and verify that they are written and
65 // read back correctly. 65 // read back correctly.
66 TEST_F(InvalidatorStorageTest, SetMaxVersionAndPayload) { 66 TEST_F(InvalidatorStorageTest, SetMaxVersionAndPayload) {
67 InvalidatorStorage storage(&pref_service_); 67 InvalidatorStorage storage(&pref_service_);
68 68
69 InvalidationStateMap expected_states; 69 InvalidationStateMap expected_states;
70 EXPECT_EQ(expected_states, storage.GetAllInvalidationStates()); 70 EXPECT_EQ(expected_states, storage.GetAllInvalidationStates());
71 71
(...skipping 425 matching lines...) Expand 10 before | Expand all | Expand 10 after
497 EXPECT_TRUE(it->second.IsValid()); 497 EXPECT_TRUE(it->second.IsValid());
498 state_map[kBookmarksId_].expected = it->second; 498 state_map[kBookmarksId_].expected = it->second;
499 EXPECT_EQ(state_map, storage.GetAllInvalidationStates()); 499 EXPECT_EQ(state_map, storage.GetAllInvalidationStates());
500 500
501 storage.Acknowledge(kBookmarksId_, it->second); 501 storage.Acknowledge(kBookmarksId_, it->second);
502 state_map[kBookmarksId_].current = it->second; 502 state_map[kBookmarksId_].current = it->second;
503 EXPECT_EQ(state_map, storage.GetAllInvalidationStates()); 503 EXPECT_EQ(state_map, storage.GetAllInvalidationStates());
504 } 504 }
505 505
506 } // namespace invalidation 506 } // namespace invalidation
OLDNEW
« no previous file with comments | « chrome/browser/intranet_redirect_detector.cc ('k') | chrome/browser/jankometer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698