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

Unified Diff: courgette/label_manager.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/image_utils_unittest.cc ('k') | courgette/label_manager.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: courgette/label_manager.h
diff --git a/courgette/label_manager.h b/courgette/label_manager.h
index 595e2e7b807475e77c31da8c1e4fbde3882f38df..d1555613fa6af0bdd936a817f0de3389306e8b8a 100644
--- a/courgette/label_manager.h
+++ b/courgette/label_manager.h
@@ -5,6 +5,9 @@
#ifndef COURGETTE_LABEL_MANAGER_H_
#define COURGETTE_LABEL_MANAGER_H_
+#include <stddef.h>
+#include <stdint.h>
+
#include <vector>
#include "base/macros.h"
@@ -43,7 +46,7 @@ class LabelManager {
void Read(RvaVisitor* rva_visitor);
// Removes |labels_| elements whose |count_| is less than |count_threshold|.
- void RemoveUnderusedLabels(int32 count_threshold);
+ void RemoveUnderusedLabels(int32_t count_threshold);
// Efficiently searches for a Label that targets |rva|. Returns the pointer to
// the stored Label instance if found, or null otherwise.
« no previous file with comments | « courgette/image_utils_unittest.cc ('k') | courgette/label_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698