Index: extensions/browser/api/cast_channel/cast_socket.h |
diff --git a/extensions/browser/api/cast_channel/cast_socket.h b/extensions/browser/api/cast_channel/cast_socket.h |
index 13c8e535d925d6e0c6e03fd1f24491bfb4b10bd3..35edd4d84f66e638bea91377d2b8040a0831cb75 100644 |
--- a/extensions/browser/api/cast_channel/cast_socket.h |
+++ b/extensions/browser/api/cast_channel/cast_socket.h |
@@ -5,12 +5,14 @@ |
#ifndef EXTENSIONS_BROWSER_API_CAST_CHANNEL_CAST_SOCKET_H_ |
#define EXTENSIONS_BROWSER_API_CAST_CHANNEL_CAST_SOCKET_H_ |
+#include <stdint.h> |
+ |
#include <queue> |
#include <string> |
-#include "base/basictypes.h" |
#include "base/cancelable_callback.h" |
#include "base/gtest_prod_util.h" |
+#include "base/macros.h" |
#include "base/memory/ref_counted.h" |
#include "base/threading/thread_checker.h" |
#include "base/timer/timer.h" |
@@ -149,7 +151,7 @@ class CastSocketImpl : public CastSocket { |
const base::TimeDelta& connect_timeout, |
bool keep_alive, |
const scoped_refptr<Logger>& logger, |
- uint64 device_capabilities); |
+ uint64_t device_capabilities); |
// Ensures that the socket is closed. |
~CastSocketImpl() override; |
@@ -335,7 +337,7 @@ class CastSocketImpl : public CastSocket { |
bool is_canceled_; |
// Capabilities declared by the cast device. |
- uint64 device_capabilities_; |
+ uint64_t device_capabilities_; |
// Whether the channel is audio only as identified by the device |
// certificate during channel authentication. |