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

Side by Side Diff: sync/notifier/dropped_invalidation_tracker.cc

Issue 322333004: sync: Inject sync/'s dependency on invalidations (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 6 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
« no previous file with comments | « sync/notifier/dropped_invalidation_tracker.h ('k') | sync/sessions/data_type_tracker.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "sync/notifier/dropped_invalidation_tracker.h"
6
7 #include "sync/internal_api/public/base/invalidation.h"
8
9 namespace syncer {
10
11 DroppedInvalidationTracker::DroppedInvalidationTracker(
12 const invalidation::ObjectId& id)
13 : id_(id),
14 drop_ack_handle_(AckHandle::InvalidAckHandle()),
15 recovering_from_drop_(false) {}
16
17 DroppedInvalidationTracker::~DroppedInvalidationTracker() {}
18
19 const invalidation::ObjectId& DroppedInvalidationTracker::object_id() const {
20 return id_;
21 }
22
23 void DroppedInvalidationTracker::RecordDropEvent(
24 WeakHandle<AckHandler> handler, AckHandle handle) {
25 drop_ack_handler_ = handler;
26 drop_ack_handle_ = handle;
27 recovering_from_drop_ = true;
28 }
29
30 void DroppedInvalidationTracker::RecordRecoveryFromDropEvent() {
31 if (drop_ack_handler_.IsInitialized()) {
32 drop_ack_handler_.Call(FROM_HERE,
33 &AckHandler::Acknowledge,
34 id_,
35 drop_ack_handle_);
36 }
37 drop_ack_handler_ = syncer::WeakHandle<AckHandler>();
38 recovering_from_drop_ = false;
39 }
40
41 bool DroppedInvalidationTracker::IsRecoveringFromDropEvent() const {
42 return recovering_from_drop_;
43 }
44
45 } // namespace syncer
OLDNEW
« no previous file with comments | « sync/notifier/dropped_invalidation_tracker.h ('k') | sync/sessions/data_type_tracker.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698