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

Unified Diff: third_party/WebKit/Source/core/html/HTMLVideoElementTest.cpp

Issue 1747593002: Change the type for byte counts to size_t in WebMediaPlayer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Made changes in the unittests Created 4 years, 10 months 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 | « media/blink/webmediaplayer_impl.cc ('k') | third_party/WebKit/public/platform/WebMediaPlayer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/html/HTMLVideoElementTest.cpp
diff --git a/third_party/WebKit/Source/core/html/HTMLVideoElementTest.cpp b/third_party/WebKit/Source/core/html/HTMLVideoElementTest.cpp
index b5ed951b2b0bdc21186ab55d21f0b55d24aa320f..8cef5df933fd2c74ceebca1c8d945fa8450ef26d 100644
--- a/third_party/WebKit/Source/core/html/HTMLVideoElementTest.cpp
+++ b/third_party/WebKit/Source/core/html/HTMLVideoElementTest.cpp
@@ -46,8 +46,8 @@ public:
double mediaTimeForTimeValue(double timeValue) const override { return timeValue; };
unsigned decodedFrameCount() const override { return 0; };
unsigned droppedFrameCount() const override { return 0; };
- unsigned audioDecodedByteCount() const override { return 0; };
- unsigned videoDecodedByteCount() const override { return 0; };
+ size_t audioDecodedByteCount() const override { return 0; };
+ size_t videoDecodedByteCount() const override { return 0; };
void paint(WebCanvas*, const WebRect&, unsigned char alpha, SkXfermode::Mode) override { };
};
« no previous file with comments | « media/blink/webmediaplayer_impl.cc ('k') | third_party/WebKit/public/platform/WebMediaPlayer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698