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

Side by Side Diff: components/invalidation/ack_handle.cc

Issue 400073003: Finish decoupling sync and invalidations (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix GN 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 | « components/invalidation/ack_handle.h ('k') | components/invalidation/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
1 // Copyright 2013 The Chromium Authors. All rights reserved. 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 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 #include "sync/internal_api/public/base/ack_handle.h" 5 #include "components/invalidation/ack_handle.h"
6 6
7 #include <cstddef> 7 #include <cstddef>
8 #include "base/rand_util.h" 8 #include "base/rand_util.h"
9 #include "base/strings/string_number_conversions.h" 9 #include "base/strings/string_number_conversions.h"
10 #include "base/values.h" 10 #include "base/values.h"
11 11
12 namespace syncer { 12 namespace syncer {
13 13
14 namespace { 14 namespace {
15 // Hopefully enough bytes for uniqueness. 15 // Hopefully enough bytes for uniqueness.
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 } 58 }
59 59
60 AckHandle::AckHandle(const std::string& state, base::Time timestamp) 60 AckHandle::AckHandle(const std::string& state, base::Time timestamp)
61 : state_(state), timestamp_(timestamp) { 61 : state_(state), timestamp_(timestamp) {
62 } 62 }
63 63
64 AckHandle::~AckHandle() { 64 AckHandle::~AckHandle() {
65 } 65 }
66 66
67 } // namespace syncer 67 } // namespace syncer
OLDNEW
« no previous file with comments | « components/invalidation/ack_handle.h ('k') | components/invalidation/ack_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698