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

Unified Diff: chrome/browser/media/router/media_router.h

Issue 1550593002: Switch to standard integer types in chrome/browser/, part 2 of 4. (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
« no previous file with comments | « chrome/browser/media/router/issues_observer.h ('k') | chrome/browser/media/router/media_router_factory.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/media/router/media_router.h
diff --git a/chrome/browser/media/router/media_router.h b/chrome/browser/media/router/media_router.h
index 323b6026c6c0d068ce89becd5286a7c3940b6ea9..2de52f950484d141e5fd8d790785509405b22439 100644
--- a/chrome/browser/media/router/media_router.h
+++ b/chrome/browser/media/router/media_router.h
@@ -5,6 +5,8 @@
#ifndef CHROME_BROWSER_MEDIA_ROUTER_MEDIA_ROUTER_H_
#define CHROME_BROWSER_MEDIA_ROUTER_MEDIA_ROUTER_H_
+#include <stdint.h>
+
#include <string>
#include <vector>
@@ -116,7 +118,7 @@ class MediaRouter : public KeyedService {
// This is called for Blob / ArrayBuffer / ArrayBufferView types.
virtual void SendRouteBinaryMessage(
const MediaRoute::Id& route_id,
- scoped_ptr<std::vector<uint8>> data,
+ scoped_ptr<std::vector<uint8_t>> data,
const SendRouteMessageCallback& callback) = 0;
// Adds a new |issue|.
« no previous file with comments | « chrome/browser/media/router/issues_observer.h ('k') | chrome/browser/media/router/media_router_factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698