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

Unified Diff: courgette/crc.h

Issue 1543643002: Switch to standard integer types in courgette/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix Created 5 years 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « courgette/courgette_tool.cc ('k') | courgette/crc.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: courgette/crc.h
diff --git a/courgette/crc.h b/courgette/crc.h
index c3662bb1ceefe6884833192ecbeb67b5b102fc0e..b0c3323952e2c29bf69204a7bbd68c57172c9553 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_
« no previous file with comments | « courgette/courgette_tool.cc ('k') | courgette/crc.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698