| 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 // An implementation of SyncNotifier that wraps InvalidationNotifier | 5 // An implementation of SyncNotifier that wraps InvalidationNotifier |
| 6 // on its own thread. | 6 // on its own thread. |
| 7 | 7 |
| 8 #ifndef SYNC_NOTIFIER_NON_BLOCKING_INVALIDATION_NOTIFIER_H_ | 8 #ifndef SYNC_NOTIFIER_NON_BLOCKING_INVALIDATION_NOTIFIER_H_ |
| 9 #define SYNC_NOTIFIER_NON_BLOCKING_INVALIDATION_NOTIFIER_H_ | 9 #define SYNC_NOTIFIER_NON_BLOCKING_INVALIDATION_NOTIFIER_H_ |
| 10 #pragma once | 10 #pragma once |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 #include "sync/util/weak_handle.h" | 23 #include "sync/util/weak_handle.h" |
| 24 | 24 |
| 25 namespace base { | 25 namespace base { |
| 26 class MessageLoopProxy; | 26 class MessageLoopProxy; |
| 27 } | 27 } |
| 28 | 28 |
| 29 namespace sync_notifier { | 29 namespace sync_notifier { |
| 30 | 30 |
| 31 class NonBlockingInvalidationNotifier | 31 class NonBlockingInvalidationNotifier |
| 32 : public SyncNotifier, | 32 : public SyncNotifier, |
| 33 // SyncNotifierObserver to "observe" our Core via WeakHandle. |
| 33 public SyncNotifierObserver { | 34 public SyncNotifierObserver { |
| 34 public: | 35 public: |
| 35 // |invalidation_state_tracker| must be initialized. | 36 // |invalidation_state_tracker| must be initialized. |
| 36 NonBlockingInvalidationNotifier( | 37 NonBlockingInvalidationNotifier( |
| 37 const notifier::NotifierOptions& notifier_options, | 38 const notifier::NotifierOptions& notifier_options, |
| 38 const InvalidationVersionMap& initial_max_invalidation_versions, | 39 const InvalidationVersionMap& initial_max_invalidation_versions, |
| 39 const browser_sync::WeakHandle<InvalidationStateTracker>& | 40 const browser_sync::WeakHandle<InvalidationStateTracker>& |
| 40 invalidation_state_tracker, | 41 invalidation_state_tracker, |
| 41 const std::string& client_info); | 42 const std::string& client_info); |
| 42 | 43 |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 scoped_refptr<Core> core_; | 75 scoped_refptr<Core> core_; |
| 75 scoped_refptr<base::MessageLoopProxy> parent_message_loop_proxy_; | 76 scoped_refptr<base::MessageLoopProxy> parent_message_loop_proxy_; |
| 76 scoped_refptr<base::MessageLoopProxy> io_message_loop_proxy_; | 77 scoped_refptr<base::MessageLoopProxy> io_message_loop_proxy_; |
| 77 | 78 |
| 78 DISALLOW_COPY_AND_ASSIGN(NonBlockingInvalidationNotifier); | 79 DISALLOW_COPY_AND_ASSIGN(NonBlockingInvalidationNotifier); |
| 79 }; | 80 }; |
| 80 | 81 |
| 81 } // namespace sync_notifier | 82 } // namespace sync_notifier |
| 82 | 83 |
| 83 #endif // SYNC_NOTIFIER_NON_BLOCKING_INVALIDATION_NOTIFIER_H_ | 84 #endif // SYNC_NOTIFIER_NON_BLOCKING_INVALIDATION_NOTIFIER_H_ |
| OLD | NEW |