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

Unified Diff: content/renderer/bluetooth/bluetooth_dispatcher.cc

Issue 1547073003: Switch to standard integer types in content/renderer/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
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
Index: content/renderer/bluetooth/bluetooth_dispatcher.cc
diff --git a/content/renderer/bluetooth/bluetooth_dispatcher.cc b/content/renderer/bluetooth/bluetooth_dispatcher.cc
index 5f10eede5a56d60fac2e0693abca441ea7fbea5a..9ffca9e039bef52653d441b2eb650a051d1cbb63 100644
--- a/content/renderer/bluetooth/bluetooth_dispatcher.cc
+++ b/content/renderer/bluetooth/bluetooth_dispatcher.cc
@@ -4,6 +4,8 @@
#include "content/renderer/bluetooth/bluetooth_dispatcher.h"
+#include <stddef.h>
+
#include "base/lazy_instance.h"
#include "base/memory/scoped_ptr.h"
#include "base/message_loop/message_loop.h"
@@ -612,7 +614,7 @@ void BluetoothDispatcher::OnGetCharacteristicSuccess(
int thread_id,
int request_id,
const std::string& characteristic_instance_id,
- uint32 characteristic_properties) {
+ uint32_t characteristic_properties) {
DCHECK(pending_characteristic_requests_.Lookup(request_id)) << request_id;
BluetoothCharacteristicRequest* request =
« no previous file with comments | « content/renderer/bluetooth/bluetooth_dispatcher.h ('k') | content/renderer/bluetooth/bluetooth_message_filter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698