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

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

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.h
diff --git a/content/renderer/bluetooth/bluetooth_dispatcher.h b/content/renderer/bluetooth/bluetooth_dispatcher.h
index ff6a0751539641e8c1216166a942145675492a7c..6dbd5ea93578e43c1efcf631b4fed5f1906b64bf 100644
--- a/content/renderer/bluetooth/bluetooth_dispatcher.h
+++ b/content/renderer/bluetooth/bluetooth_dispatcher.h
@@ -5,10 +5,13 @@
#ifndef CONTENT_CHILD_BLUETOOTH_BLUETOOTH_DISPATCHER_H_
#define CONTENT_CHILD_BLUETOOTH_BLUETOOTH_DISPATCHER_H_
+#include <stdint.h>
+
#include <map>
#include <queue>
#include "base/id_map.h"
+#include "base/macros.h"
#include "base/memory/ref_counted.h"
#include "content/common/bluetooth/bluetooth_device.h"
#include "content/public/child/worker_thread.h"
@@ -178,7 +181,7 @@ class BluetoothDispatcher : public WorkerThread::Observer {
void OnGetCharacteristicSuccess(int thread_id,
int request_id,
const std::string& characteristic_instance_id,
- uint32 characteristic_properties);
+ uint32_t characteristic_properties);
void OnGetCharacteristicError(int thread_id,
int request_id,
blink::WebBluetoothError error);

Powered by Google App Engine
This is Rietveld 408576698