Chromium Code Reviews| OLD | NEW |
|---|---|
| (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_ | |
| OLD | NEW |