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

Unified Diff: content/renderer/pepper/pepper_video_destination_host.cc

Issue 1547073003: Switch to standard integer types in content/renderer/. (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: content/renderer/pepper/pepper_video_destination_host.cc
diff --git a/content/renderer/pepper/pepper_video_destination_host.cc b/content/renderer/pepper/pepper_video_destination_host.cc
index 0978653385fc2916320eff821c5577eedece5624..3f682db8ab06348ede6432e405a40c2dec9eec8d 100644
--- a/content/renderer/pepper/pepper_video_destination_host.cc
+++ b/content/renderer/pepper/pepper_video_destination_host.cc
@@ -82,7 +82,7 @@ int32_t PepperVideoDestinationHost::OnHostMsgPutFrame(
if (!frame_writer_.get())
return PP_ERROR_FAILED;
- // Convert PP_TimeTicks (a double, in seconds) to a video timestamp (int64,
+ // Convert PP_TimeTicks (a double, in seconds) to a video timestamp (int64_t,
// nanoseconds).
const int64_t timestamp_ns =
static_cast<int64_t>(timestamp * base::Time::kNanosecondsPerSecond);
« no previous file with comments | « content/renderer/pepper/pepper_video_destination_host.h ('k') | content/renderer/pepper/pepper_video_encoder_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698