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

Side by Side Diff: components/sync/js/sync_js_controller_unittest.cc

Issue 2130453004: [Sync] Move //sync to //components/sync. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 4 years, 4 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
« no previous file with comments | « components/sync/js/sync_js_controller.cc ('k') | components/sync/protocol/BUILD.gn » ('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 "sync/js/sync_js_controller.h" 5 #include "components/sync/js/sync_js_controller.h"
6 6
7 #include "base/run_loop.h" 7 #include "base/run_loop.h"
8 #include "base/values.h" 8 #include "base/values.h"
9 #include "sync/js/js_event_details.h" 9 #include "components/sync/js/js_event_details.h"
10 #include "sync/js/js_test_util.h" 10 #include "components/sync/js/js_test_util.h"
11 #include "testing/gmock/include/gmock/gmock.h" 11 #include "testing/gmock/include/gmock/gmock.h"
12 #include "testing/gtest/include/gtest/gtest.h" 12 #include "testing/gtest/include/gtest/gtest.h"
13 13
14 namespace syncer { 14 namespace syncer {
15 namespace { 15 namespace {
16 16
17 using ::testing::_; 17 using ::testing::_;
18 using ::testing::InSequence; 18 using ::testing::InSequence;
19 using ::testing::Mock; 19 using ::testing::Mock;
20 using ::testing::StrictMock; 20 using ::testing::StrictMock;
21 21
22 class SyncJsControllerTest : public testing::Test { 22 class SyncJsControllerTest : public testing::Test {
23 protected: 23 protected:
24 void PumpLoop() { 24 void PumpLoop() { base::RunLoop().RunUntilIdle(); }
25 base::RunLoop().RunUntilIdle();
26 }
27 25
28 private: 26 private:
29 base::MessageLoop message_loop_; 27 base::MessageLoop message_loop_;
30 }; 28 };
31 29
32 TEST_F(SyncJsControllerTest, Events) { 30 TEST_F(SyncJsControllerTest, Events) {
33 InSequence dummy; 31 InSequence dummy;
34 SyncJsController sync_js_controller; 32 SyncJsController sync_js_controller;
35 33
36 base::DictionaryValue details_dict1, details_dict2; 34 base::DictionaryValue details_dict1, details_dict2;
(...skipping 15 matching lines...) Expand all
52 sync_js_controller.HandleJsEvent("anotherevent", details2); 50 sync_js_controller.HandleJsEvent("anotherevent", details2);
53 sync_js_controller.RemoveJsEventHandler(&event_handler1); 51 sync_js_controller.RemoveJsEventHandler(&event_handler1);
54 sync_js_controller.RemoveJsEventHandler(&event_handler2); 52 sync_js_controller.RemoveJsEventHandler(&event_handler2);
55 sync_js_controller.HandleJsEvent("droppedevent", details2); 53 sync_js_controller.HandleJsEvent("droppedevent", details2);
56 54
57 PumpLoop(); 55 PumpLoop();
58 } 56 }
59 57
60 } // namespace 58 } // namespace
61 } // namespace syncer 59 } // namespace syncer
OLDNEW
« no previous file with comments | « components/sync/js/sync_js_controller.cc ('k') | components/sync/protocol/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698