| 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 "sync/notifier/sync_notifier_factory.h" | 5 #include "sync/notifier/sync_notifier_factory.h" |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 | 8 |
| 9 #include "base/logging.h" | 9 #include "base/logging.h" |
| 10 #include "jingle/notifier/listener/push_client.h" | 10 #include "jingle/notifier/listener/push_client.h" |
| 11 #include "sync/notifier/non_blocking_invalidation_notifier.h" | 11 #include "sync/notifier/non_blocking_invalidation_notifier.h" |
| 12 #include "sync/notifier/p2p_notifier.h" | 12 #include "sync/notifier/p2p_notifier.h" |
| 13 #include "sync/notifier/sync_notifier.h" | 13 #include "sync/notifier/sync_notifier.h" |
| 14 | 14 |
| 15 namespace csync { | 15 namespace syncer { |
| 16 namespace { | 16 namespace { |
| 17 | 17 |
| 18 SyncNotifier* CreateDefaultSyncNotifier( | 18 SyncNotifier* CreateDefaultSyncNotifier( |
| 19 const notifier::NotifierOptions& notifier_options, | 19 const notifier::NotifierOptions& notifier_options, |
| 20 const InvalidationVersionMap& initial_max_invalidation_versions, | 20 const InvalidationVersionMap& initial_max_invalidation_versions, |
| 21 const std::string& initial_invalidation_state, | 21 const std::string& initial_invalidation_state, |
| 22 const csync::WeakHandle<InvalidationStateTracker>& | 22 const syncer::WeakHandle<InvalidationStateTracker>& |
| 23 invalidation_state_tracker, | 23 invalidation_state_tracker, |
| 24 const std::string& client_info) { | 24 const std::string& client_info) { |
| 25 if (notifier_options.notification_method == notifier::NOTIFICATION_P2P) { | 25 if (notifier_options.notification_method == notifier::NOTIFICATION_P2P) { |
| 26 // TODO(rlarocque): Ideally, the notification target would be | 26 // TODO(rlarocque): Ideally, the notification target would be |
| 27 // NOTIFY_OTHERS. There's no good reason to notify ourselves of our own | 27 // NOTIFY_OTHERS. There's no good reason to notify ourselves of our own |
| 28 // commits. We self-notify for now only because the integration tests rely | 28 // commits. We self-notify for now only because the integration tests rely |
| 29 // on this behaviour. See crbug.com/97780. | 29 // on this behaviour. See crbug.com/97780. |
| 30 return new P2PNotifier( | 30 return new P2PNotifier( |
| 31 notifier::PushClient::CreateDefault(notifier_options), | 31 notifier::PushClient::CreateDefault(notifier_options), |
| 32 NOTIFY_ALL); | 32 NOTIFY_ALL); |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 // Android uses ChromeSyncNotificationBridge exclusively. | 66 // Android uses ChromeSyncNotificationBridge exclusively. |
| 67 return NULL; | 67 return NULL; |
| 68 #else | 68 #else |
| 69 return CreateDefaultSyncNotifier(notifier_options_, | 69 return CreateDefaultSyncNotifier(notifier_options_, |
| 70 initial_max_invalidation_versions_, | 70 initial_max_invalidation_versions_, |
| 71 initial_invalidation_state_, | 71 initial_invalidation_state_, |
| 72 invalidation_state_tracker_, | 72 invalidation_state_tracker_, |
| 73 client_info_); | 73 client_info_); |
| 74 #endif | 74 #endif |
| 75 } | 75 } |
| 76 } // namespace csync | 76 } // namespace syncer |
| OLD | NEW |