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

Unified Diff: chrome/renderer/media/cast_rtp_stream.cc

Issue 1548153002: Switch to standard integer types in chrome/. (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/renderer/media/cast_rtp_stream.h ('k') | chrome/renderer/media/cast_session.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/media/cast_rtp_stream.cc
diff --git a/chrome/renderer/media/cast_rtp_stream.cc b/chrome/renderer/media/cast_rtp_stream.cc
index ab2a324288911f2c9d5f23adbfb3b070f5abd1b2..ac4c1da737859b00503a37294f6496bc080eb640 100644
--- a/chrome/renderer/media/cast_rtp_stream.cc
+++ b/chrome/renderer/media/cast_rtp_stream.cc
@@ -4,12 +4,15 @@
#include "chrome/renderer/media/cast_rtp_stream.h"
+#include <stdint.h>
+
#include <algorithm>
#include "base/bind.h"
#include "base/callback_helpers.h"
#include "base/command_line.h"
#include "base/logging.h"
+#include "base/macros.h"
#include "base/memory/weak_ptr.h"
#include "base/strings/stringprintf.h"
#include "base/sys_info.h"
@@ -484,8 +487,8 @@ class CastAudioSink : public base::SupportsWeakPtr<CastAudioSink>,
media::AudioParameters input_params_;
scoped_ptr<media::AudioConverter> converter_;
const media::AudioBus* current_input_bus_;
- int64 sample_frames_in_;
- int64 sample_frames_out_;
+ int64_t sample_frames_in_;
+ int64_t sample_frames_out_;
DISALLOW_COPY_AND_ASSIGN(CastAudioSink);
};
« no previous file with comments | « chrome/renderer/media/cast_rtp_stream.h ('k') | chrome/renderer/media/cast_session.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698