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

Unified Diff: courgette/patcher_x86_32.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/patch_generator_x86_32.h ('k') | courgette/region.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: courgette/patcher_x86_32.h
diff --git a/courgette/patcher_x86_32.h b/courgette/patcher_x86_32.h
index e984579f040e04ce556e8689a10de40cf866b52a..3461d79586295eb07bc126ff4a6fb36c6e54537b 100644
--- a/courgette/patcher_x86_32.h
+++ b/courgette/patcher_x86_32.h
@@ -5,6 +5,9 @@
#ifndef COURGETTE_WIN32_X86_PATCHER_H_
#define COURGETTE_WIN32_X86_PATCHER_H_
+#include <stdint.h>
+
+#include "base/macros.h"
#include "courgette/ensemble.h"
namespace courgette {
@@ -90,8 +93,8 @@ class PatcherX86_32 : public TransformationPatcher {
private:
Region ensemble_region_;
- uint32 base_offset_;
- uint32 base_length_;
+ uint32_t base_offset_;
+ uint32_t base_length_;
DISALLOW_COPY_AND_ASSIGN(PatcherX86_32);
};
« no previous file with comments | « courgette/patch_generator_x86_32.h ('k') | courgette/region.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698