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

Unified Diff: components/packed_ct_ev_whitelist/bit_stream_reader.h

Issue 1551433002: Switch to standard integer types in components/, part 3 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more 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
Index: components/packed_ct_ev_whitelist/bit_stream_reader.h
diff --git a/components/packed_ct_ev_whitelist/bit_stream_reader.h b/components/packed_ct_ev_whitelist/bit_stream_reader.h
index 5c95243a1af408fed664735d81f48d8e226efb5f..3ad9819ae83d1d82c71313b3238d75c20e956dfa 100644
--- a/components/packed_ct_ev_whitelist/bit_stream_reader.h
+++ b/components/packed_ct_ev_whitelist/bit_stream_reader.h
@@ -5,8 +5,10 @@
#ifndef COMPONENTS_PACKED_CT_EV_WHITELIST_BIT_STREAM_READER_H_
#define COMPONENTS_PACKED_CT_EV_WHITELIST_BIT_STREAM_READER_H_
+#include <stddef.h>
#include <stdint.h>
+#include "base/macros.h"
#include "base/strings/string_piece.h"
namespace packed_ct_ev_whitelist {
@@ -54,7 +56,7 @@ class BitStreamReader {
// Index of the last bit read within |current_byte_|. Since bits are read
// from the MSB to the LSB, this value is initialized to 7 and decremented
// after each read.
- int8 current_bit_;
+ int8_t current_bit_;
DISALLOW_COPY_AND_ASSIGN(BitStreamReader);
};
« no previous file with comments | « components/ownership/owner_settings_service.cc ('k') | components/packed_ct_ev_whitelist/bit_stream_reader_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698