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

Unified Diff: chrome/browser/media/webrtc_rtp_dump_handler.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
Index: chrome/browser/media/webrtc_rtp_dump_handler.h
diff --git a/chrome/browser/media/webrtc_rtp_dump_handler.h b/chrome/browser/media/webrtc_rtp_dump_handler.h
index 4c27bf4f4ae0956bdf8f9839b6f499e8ddf1eaf9..a9fefad411b25f250235c3ed66fa2741328af0b1 100644
--- a/chrome/browser/media/webrtc_rtp_dump_handler.h
+++ b/chrome/browser/media/webrtc_rtp_dump_handler.h
@@ -5,9 +5,12 @@
#ifndef CHROME_BROWSER_MEDIA_WEBRTC_RTP_DUMP_HANDLER_H_
#define CHROME_BROWSER_MEDIA_WEBRTC_RTP_DUMP_HANDLER_H_
-#include "base/basictypes.h"
+#include <stddef.h>
+#include <stdint.h>
+
#include "base/callback.h"
#include "base/files/file_path.h"
+#include "base/macros.h"
#include "base/memory/weak_ptr.h"
#include "chrome/browser/media/rtp_dump_type.h"
@@ -72,7 +75,7 @@ class WebRtcRtpDumpHandler {
// Adds an RTP packet to the dump. The caller must make sure it's a valid RTP
// packet.
- void OnRtpPacket(const uint8* packet_header,
+ void OnRtpPacket(const uint8_t* packet_header,
size_t header_length,
size_t packet_length,
bool incoming);
« no previous file with comments | « chrome/browser/media/webrtc_logging_handler_host.cc ('k') | chrome/browser/media/webrtc_rtp_dump_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698