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

Unified Diff: remoting/base/compound_buffer_unittest.cc

Issue 1542203002: Switch to standard integer types in remoting/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@int-remoting-host
Patch Set: 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 | « remoting/base/compound_buffer.cc ('k') | remoting/base/dispatch_win.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/base/compound_buffer_unittest.cc
diff --git a/remoting/base/compound_buffer_unittest.cc b/remoting/base/compound_buffer_unittest.cc
index e5f4bef381463a6aa972a12134e01bcc94ad961d..031365a85d9c02ae7a61b7ac15171eee90c0b6d5 100644
--- a/remoting/base/compound_buffer_unittest.cc
+++ b/remoting/base/compound_buffer_unittest.cc
@@ -2,6 +2,9 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
+#include <stddef.h>
+#include <stdint.h>
+
#include <string>
#include "base/bind.h"
@@ -108,7 +111,7 @@ class CompoundBufferTest : public testing::Test {
static size_t ReadFromInput(CompoundBufferInputStream* input,
void* data, size_t size) {
- uint8* out = reinterpret_cast<uint8*>(data);
+ uint8_t* out = reinterpret_cast<uint8_t*>(data);
int out_size = size;
const void* in;
« no previous file with comments | « remoting/base/compound_buffer.cc ('k') | remoting/base/dispatch_win.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698