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

Side by Side Diff: sync/internal_api/public/attachments/attachment_util.h

Issue 710073003: Store attachment crc in AttachmentStore (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 6 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
OLDNEW
(Empty)
1 // Copyright 2014 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_INTERNAL_API_PUBLIC_ATTACHMENTS_ATTACHMENT_UTIL_H_
6 #define SYNC_INTERNAL_API_PUBLIC_ATTACHMENTS_ATTACHMENT_UTIL_H_
7
8 #include "base/memory/ref_counted.h"
9
10 namespace base {
11 class RefCountedMemory;
12 }
13
14 namespace syncer {
15
16 // Return the crc32c of the memory described by |data|.
17 //
18 // Potentially expensive.
19 uint32_t ComputeCrc32c(const scoped_refptr<base::RefCountedMemory>& data);
maniscalco 2014/11/11 00:44:54 WDYT about putting this on Attachment (public, sta
pavely 2014/11/11 22:27:15 I'd love to but seems like I can't include third_p
maniscalco 2014/11/11 23:05:32 Ah, right, sync/api/attachments inherits sync/api'
20
21 } // namespace syncer
22
23 #endif // SYNC_INTERNAL_API_PUBLIC_ATTACHMENTS_ATTACHMENT_UTIL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698