| Index: chromeos/dbus/privet_daemon_manager_client.cc
|
| diff --git a/chromeos/dbus/privet_daemon_manager_client.cc b/chromeos/dbus/privet_daemon_manager_client.cc
|
| index de61cc889d90e382b0dfbad9124c954c88c314dc..fb04d1171805debda65fefddd75b5464e854cd0c 100644
|
| --- a/chromeos/dbus/privet_daemon_manager_client.cc
|
| +++ b/chromeos/dbus/privet_daemon_manager_client.cc
|
| @@ -4,9 +4,13 @@
|
|
|
| #include "chromeos/dbus/privet_daemon_manager_client.h"
|
|
|
| +#include <stddef.h>
|
| +#include <stdint.h>
|
| +
|
| #include "base/bind.h"
|
| #include "base/location.h"
|
| #include "base/logging.h"
|
| +#include "base/macros.h"
|
| #include "base/memory/weak_ptr.h"
|
| #include "base/observer_list.h"
|
| #include "base/single_thread_task_runner.h"
|
| @@ -220,7 +224,7 @@ bool PrivetDaemonManagerClient::PairingInfoProperty::PopValueFromReader(
|
| value_.set_mode(string_value);
|
| }
|
| } else if (field_reader.GetDataSignature() == "ay") {
|
| - const uint8* bytes = nullptr;
|
| + const uint8_t* bytes = nullptr;
|
| size_t length = 0;
|
| if (!field_reader.PopArrayOfBytes(&bytes, &length))
|
| return false;
|
|
|