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

Unified Diff: extensions/browser/api/cast_channel/cast_socket.h

Issue 1549643002: Switch to standard integer types in extensions/browser/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@clean
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: 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.
« no previous file with comments | « extensions/browser/api/cast_channel/cast_framer_unittest.cc ('k') | extensions/browser/api/cast_channel/cast_socket.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698