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

Side by Side Diff: sync/notifier/non_blocking_invalidation_notifier.h

Issue 10698014: [Sync] Rename csync namespace to syncer (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address comments Created 8 years, 5 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 | Annotate | Revision Log
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 // 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
11 11
12 #include <string> 12 #include <string>
13 13
14 #include "base/basictypes.h" 14 #include "base/basictypes.h"
15 #include "base/compiler_specific.h" 15 #include "base/compiler_specific.h"
16 #include "base/memory/ref_counted.h" 16 #include "base/memory/ref_counted.h"
17 #include "base/memory/weak_ptr.h" 17 #include "base/memory/weak_ptr.h"
18 #include "base/observer_list.h" 18 #include "base/observer_list.h"
19 #include "jingle/notifier/base/notifier_options.h" 19 #include "jingle/notifier/base/notifier_options.h"
20 #include "sync/internal_api/public/util/weak_handle.h" 20 #include "sync/internal_api/public/util/weak_handle.h"
21 #include "sync/notifier/invalidation_state_tracker.h" 21 #include "sync/notifier/invalidation_state_tracker.h"
22 #include "sync/notifier/sync_notifier.h" 22 #include "sync/notifier/sync_notifier.h"
23 #include "sync/notifier/sync_notifier_observer.h" 23 #include "sync/notifier/sync_notifier_observer.h"
24 24
25 namespace base { 25 namespace base {
26 class SingleThreadTaskRunner; 26 class SingleThreadTaskRunner;
27 } // namespace base 27 } // namespace base
28 28
29 namespace csync { 29 namespace syncer {
30 30
31 class NonBlockingInvalidationNotifier 31 class NonBlockingInvalidationNotifier
32 : public SyncNotifier, 32 : public SyncNotifier,
33 // SyncNotifierObserver to "observe" our Core via WeakHandle. 33 // SyncNotifierObserver to "observe" our Core via WeakHandle.
34 public SyncNotifierObserver { 34 public SyncNotifierObserver {
35 public: 35 public:
36 // |invalidation_state_tracker| must be initialized. 36 // |invalidation_state_tracker| must be initialized.
37 NonBlockingInvalidationNotifier( 37 NonBlockingInvalidationNotifier(
38 const notifier::NotifierOptions& notifier_options, 38 const notifier::NotifierOptions& notifier_options,
39 const InvalidationVersionMap& initial_max_invalidation_versions, 39 const InvalidationVersionMap& initial_max_invalidation_versions,
40 const std::string& initial_invalidation_state, 40 const std::string& initial_invalidation_state,
41 const csync::WeakHandle<InvalidationStateTracker>& 41 const syncer::WeakHandle<InvalidationStateTracker>&
42 invalidation_state_tracker, 42 invalidation_state_tracker,
43 const std::string& client_info); 43 const std::string& client_info);
44 44
45 virtual ~NonBlockingInvalidationNotifier(); 45 virtual ~NonBlockingInvalidationNotifier();
46 46
47 // SyncNotifier implementation. 47 // SyncNotifier implementation.
48 virtual void AddObserver(SyncNotifierObserver* observer) OVERRIDE; 48 virtual void AddObserver(SyncNotifierObserver* observer) OVERRIDE;
49 virtual void RemoveObserver(SyncNotifierObserver* observer) OVERRIDE; 49 virtual void RemoveObserver(SyncNotifierObserver* observer) OVERRIDE;
50 virtual void SetUniqueId(const std::string& unique_id) OVERRIDE; 50 virtual void SetUniqueId(const std::string& unique_id) OVERRIDE;
51 virtual void SetStateDeprecated(const std::string& state) OVERRIDE; 51 virtual void SetStateDeprecated(const std::string& state) OVERRIDE;
(...skipping 22 matching lines...) Expand all
74 74
75 // The real guts of NonBlockingInvalidationNotifier, which allows 75 // The real guts of NonBlockingInvalidationNotifier, which allows
76 // this class to live completely on the parent thread. 76 // this class to live completely on the parent thread.
77 scoped_refptr<Core> core_; 77 scoped_refptr<Core> core_;
78 scoped_refptr<base::SingleThreadTaskRunner> parent_task_runner_; 78 scoped_refptr<base::SingleThreadTaskRunner> parent_task_runner_;
79 scoped_refptr<base::SingleThreadTaskRunner> network_task_runner_; 79 scoped_refptr<base::SingleThreadTaskRunner> network_task_runner_;
80 80
81 DISALLOW_COPY_AND_ASSIGN(NonBlockingInvalidationNotifier); 81 DISALLOW_COPY_AND_ASSIGN(NonBlockingInvalidationNotifier);
82 }; 82 };
83 83
84 } // namespace csync 84 } // namespace syncer
85 85
86 #endif // SYNC_NOTIFIER_NON_BLOCKING_INVALIDATION_NOTIFIER_H_ 86 #endif // SYNC_NOTIFIER_NON_BLOCKING_INVALIDATION_NOTIFIER_H_
OLDNEW
« no previous file with comments | « sync/notifier/mock_sync_notifier_observer.cc ('k') | sync/notifier/non_blocking_invalidation_notifier.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698