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

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

Issue 1815033003: Add srcObject attribute of type MediaStream to HTMLMediaElement. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: philipj's comments Created 4 years, 8 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
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 661a2cc79207cf3e0bf6a2cb38cf383db972a1c0..b3bd917a7558e3023b6601d8764626160f1faa6f 100644
--- a/third_party/WebKit/Source/core/html/HTMLVideoElementTest.cpp
+++ b/third_party/WebKit/Source/core/html/HTMLVideoElementTest.cpp
@@ -21,7 +21,7 @@ namespace {
class EmptyWebMediaPlayer : public WebMediaPlayer {
public:
- void load(LoadType, const WebURL&, CORSMode) override { };
+ void load(LoadType, const WebMediaPlayerSource&, CORSMode) override { };
void play() override { };
void pause() override { };
bool supportsSave() const override { return false; };
@@ -63,7 +63,7 @@ public:
return new StubFrameLoaderClient;
}
- PassOwnPtr<WebMediaPlayer> createWebMediaPlayer(HTMLMediaElement&, const WebURL&, WebMediaPlayerClient*) override
+ PassOwnPtr<WebMediaPlayer> createWebMediaPlayer(HTMLMediaElement&, const WebMediaPlayerSource&, WebMediaPlayerClient*) override
{
return adoptPtr(new MockWebMediaPlayer);
}

Powered by Google App Engine
This is Rietveld 408576698