| Index: remoting/host/native_messaging/native_messaging_writer.cc
|
| diff --git a/remoting/host/native_messaging/native_messaging_writer.cc b/remoting/host/native_messaging/native_messaging_writer.cc
|
| index 030cfd3f26adb3309579dd0011828e1f9b56aa82..f8d442a220318e86a10e0880e8c56ec9351f169c 100644
|
| --- a/remoting/host/native_messaging/native_messaging_writer.cc
|
| +++ b/remoting/host/native_messaging/native_messaging_writer.cc
|
| @@ -4,15 +4,17 @@
|
|
|
| #include "remoting/host/native_messaging/native_messaging_writer.h"
|
|
|
| +#include <stddef.h>
|
| +#include <stdint.h>
|
| +
|
| #include <string>
|
|
|
| -#include "base/basictypes.h"
|
| #include "base/json/json_writer.h"
|
|
|
| namespace {
|
|
|
| // 4-byte type used for the message header.
|
| -typedef uint32 MessageLengthType;
|
| +typedef uint32_t MessageLengthType;
|
|
|
| // Defined as an int, for passing to APIs that take an int, to avoid
|
| // signed/unsigned warnings about implicit cast.
|
|
|