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

Unified Diff: chromeos/dbus/privet_daemon_manager_client.cc

Issue 1540803002: Switch to standard integer types in chromeos/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more includes 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: 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;
« no previous file with comments | « chromeos/dbus/privet_daemon_manager_client.h ('k') | chromeos/dbus/privet_daemon_manager_client_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698