OLD | NEW |
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/sync/glue/chrome_sync_notification_bridge.h" | 5 #include "chrome/browser/sync/glue/chrome_sync_notification_bridge.h" |
6 | 6 |
7 #include "base/compiler_specific.h" | 7 #include "base/compiler_specific.h" |
8 #include "base/memory/weak_ptr.h" | 8 #include "base/memory/weak_ptr.h" |
9 #include "base/message_loop.h" | 9 #include "base/message_loop.h" |
10 #include "base/synchronization/waitable_event.h" | 10 #include "base/synchronization/waitable_event.h" |
11 #include "base/test/test_timeouts.h" | 11 #include "base/test/test_timeouts.h" |
12 #include "base/threading/thread.h" | 12 #include "base/threading/thread.h" |
13 #include "chrome/common/chrome_notification_types.h" | 13 #include "chrome/common/chrome_notification_types.h" |
14 #include "chrome/test/base/profile_mock.h" | 14 #include "chrome/test/base/profile_mock.h" |
15 #include "content/public/browser/notification_details.h" | 15 #include "content/public/browser/notification_details.h" |
16 #include "content/public/browser/notification_service.h" | 16 #include "content/public/browser/notification_service.h" |
17 #include "content/test/test_browser_thread.h" | 17 #include "content/public/test/test_browser_thread.h" |
18 #include "sync/notifier/mock_sync_notifier_observer.h" | 18 #include "sync/notifier/mock_sync_notifier_observer.h" |
19 #include "sync/notifier/sync_notifier_observer.h" | 19 #include "sync/notifier/sync_notifier_observer.h" |
20 #include "sync/syncable/model_type.h" | 20 #include "sync/syncable/model_type.h" |
21 #include "sync/syncable/model_type_payload_map.h" | 21 #include "sync/syncable/model_type_payload_map.h" |
22 #include "testing/gmock/include/gmock/gmock.h" | 22 #include "testing/gmock/include/gmock/gmock.h" |
23 #include "testing/gtest/include/gtest/gtest.h" | 23 #include "testing/gtest/include/gtest/gtest.h" |
24 | 24 |
25 namespace browser_sync { | 25 namespace browser_sync { |
26 namespace { | 26 namespace { |
27 | 27 |
(...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
267 syncable::ModelTypePayloadMap payload_map; | 267 syncable::ModelTypePayloadMap payload_map; |
268 payload_map[syncable::SESSIONS] = ""; | 268 payload_map[syncable::SESSIONS] = ""; |
269 CreateObserverWithExpectedPayload(payload_map); | 269 CreateObserverWithExpectedPayload(payload_map); |
270 TriggerRefreshNotification(chrome::NOTIFICATION_SYNC_REFRESH_LOCAL, | 270 TriggerRefreshNotification(chrome::NOTIFICATION_SYNC_REFRESH_LOCAL, |
271 payload_map); | 271 payload_map); |
272 VerifyAndDestroyObserver(); | 272 VerifyAndDestroyObserver(); |
273 } | 273 } |
274 | 274 |
275 } // namespace | 275 } // namespace |
276 } // namespace browser_sync | 276 } // namespace browser_sync |
OLD | NEW |