| 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/public/test/test_browser_thread.h" | 17 #include "content/public/test/test_browser_thread.h" |
| 18 #include "sync/internal_api/public/syncable/model_type.h" | 18 #include "sync/internal_api/public/base/model_type.h" |
| 19 #include "sync/internal_api/public/syncable/model_type_payload_map.h" | 19 #include "sync/internal_api/public/base/model_type_payload_map.h" |
| 20 #include "sync/notifier/mock_sync_notifier_observer.h" | 20 #include "sync/notifier/mock_sync_notifier_observer.h" |
| 21 #include "sync/notifier/sync_notifier_observer.h" | 21 #include "sync/notifier/sync_notifier_observer.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 |
| 28 using ::testing::Mock; | 28 using ::testing::Mock; |
| 29 using ::testing::NiceMock; | 29 using ::testing::NiceMock; |
| (...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 271 syncable::ModelTypePayloadMap payload_map; | 271 syncable::ModelTypePayloadMap payload_map; |
| 272 payload_map[syncable::SESSIONS] = ""; | 272 payload_map[syncable::SESSIONS] = ""; |
| 273 CreateObserverWithExpectedPayload(payload_map); | 273 CreateObserverWithExpectedPayload(payload_map); |
| 274 TriggerRefreshNotification(chrome::NOTIFICATION_SYNC_REFRESH_LOCAL, | 274 TriggerRefreshNotification(chrome::NOTIFICATION_SYNC_REFRESH_LOCAL, |
| 275 payload_map); | 275 payload_map); |
| 276 VerifyAndDestroyObserver(); | 276 VerifyAndDestroyObserver(); |
| 277 } | 277 } |
| 278 | 278 |
| 279 } // namespace | 279 } // namespace |
| 280 } // namespace browser_sync | 280 } // namespace browser_sync |
| OLD | NEW |