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

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

Issue 23754021: Invalidation trickles mega-patch (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 3 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/internal_api/sync_manager_impl_unittest.cc ('k') | sync/notifier/ack_handler.cc » ('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 #ifndef SYNC_NOTIFIER_ACK_HANDLER_H_
6 #define SYNC_NOTIFIER_ACK_HANDLER_H_
7
8 #include <vector>
9
10 #include "sync/base/sync_export.h"
11
12 namespace invalidation {
13 class ObjectId;
14 } // namespace invalidation
15
16 namespace syncer {
17
18 class AckHandle;
19
20 class SYNC_EXPORT AckHandler {
21 public:
22 AckHandler();
23 virtual ~AckHandler() = 0;
24
25 virtual void Acknowledge(
26 const invalidation::ObjectId& id,
27 const AckHandle& handle) = 0;
28 virtual void Drop(
29 const invalidation::ObjectId& id,
30 const AckHandle& handle) = 0;
31 };
32
33 } // namespace syncer
34
35 #endif // SYNC_NOTIFIER_ACK_HANDLER_H_
OLDNEW
« no previous file with comments | « sync/internal_api/sync_manager_impl_unittest.cc ('k') | sync/notifier/ack_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698