summaryrefslogtreecommitdiffstats
path: root/courgette/crc.h
diff options
context:
space:
mode:
authoravi <avi@chromium.org>2015-12-21 11:35:33 -0800
committerCommit bot <commit-bot@chromium.org>2015-12-21 19:36:50 +0000
commitab98dcc986f5a27e972dad1735fe089154186cd9 (patch)
treec706077d103f0d77a1f1f5b1bd9c4712627bd195 /courgette/crc.h
parent343184883aee8ba06d9ed3244c4adf63577d030c (diff)
downloadchromium_src-ab98dcc986f5a27e972dad1735fe089154186cd9.zip
chromium_src-ab98dcc986f5a27e972dad1735fe089154186cd9.tar.gz
chromium_src-ab98dcc986f5a27e972dad1735fe089154186cd9.tar.bz2
Switch to standard integer types in courgette/.
BUG=138542 TBR=wfh@chromium.org NOPRESUBMIT=true Review URL: https://codereview.chromium.org/1543643002 Cr-Commit-Position: refs/heads/master@{#366439}
Diffstat (limited to 'courgette/crc.h')
-rw-r--r--courgette/crc.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/courgette/crc.h b/courgette/crc.h
index c3662bb..b0c3323 100644
--- a/courgette/crc.h
+++ b/courgette/crc.h
@@ -5,13 +5,14 @@
#ifndef COURGETTE_CRC_H_
#define COURGETTE_CRC_H_
-#include "base/basictypes.h"
+#include <stddef.h>
+#include <stdint.h>
namespace courgette {
// Calculates Crc of the given buffer by calling CRC method in LZMA SDK
//
-uint32 CalculateCrc(const uint8* buffer, size_t size);
+uint32_t CalculateCrc(const uint8_t* buffer, size_t size);
} // namespace courgette
#endif // COURGETTE_CRC_H_