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

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

Issue 40303005: Add code for new invalidation local ack system (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Another attempt at fixing win Created 7 years, 1 month 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/notifier/mock_ack_handler.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
16 DroppedInvalidationTracker::~DroppedInvalidationTracker() {}
17
18 const invalidation::ObjectId& DroppedInvalidationTracker::object_id() const {
19 return id_;
20 }
21
22 void DroppedInvalidationTracker::RecordDropEvent(
23 WeakHandle<AckHandler> handler, AckHandle handle) {
24 drop_ack_handler_ = handler;
25 drop_ack_handle_ = handle;
26 }
27
28 void DroppedInvalidationTracker::RecordRecoveryFromDropEvent() {
29 if (drop_ack_handler_.IsInitialized()) {
30 drop_ack_handler_.Call(FROM_HERE,
31 &AckHandler::Acknowledge,
32 id_,
33 drop_ack_handle_);
34 }
35 drop_ack_handler_ = syncer::WeakHandle<AckHandler>();
36 }
37
38 bool DroppedInvalidationTracker::IsRecoveringFromDropEvent() const {
39 return drop_ack_handler_.IsInitialized();
40 }
41
42 } // namespace syncer
OLDNEW
« no previous file with comments | « sync/notifier/dropped_invalidation_tracker.h ('k') | sync/notifier/mock_ack_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698