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); |
| 20 |
| 21 } // namespace syncer |
| 22 |
| 23 #endif // SYNC_INTERNAL_API_PUBLIC_ATTACHMENTS_ATTACHMENT_UTIL_H_ |
OLD | NEW |