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

Unified Diff: third_party/WebKit/Source/core/paint/VideoPainterTest.cpp

Issue 2484973005: [Blink, RemotePlaybackAPI] Create WebRemotePlaybackClient in HTMLMediaElement ctor to avoid lazy in… (Closed)
Patch Set: Fixed compile for EmptyClients.cpp Created 4 years, 1 month 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/paint/VideoPainterTest.cpp
diff --git a/third_party/WebKit/Source/core/paint/VideoPainterTest.cpp b/third_party/WebKit/Source/core/paint/VideoPainterTest.cpp
index b481b99c71659418db0ce006f339c4fbf65f2219..e2ea36121d0c5130ae0637a34d28c7b07bb03109 100644
--- a/third_party/WebKit/Source/core/paint/VideoPainterTest.cpp
+++ b/third_party/WebKit/Source/core/paint/VideoPainterTest.cpp
@@ -87,6 +87,12 @@ class StubFrameLoaderClient : public EmptyFrameLoaderClient {
WebMediaPlayerClient* client) override {
return wrapUnique(new StubWebMediaPlayer(client));
}
+
+ WebRemotePlaybackClient* createWebRemotePlaybackClient(
+ ScriptState*,
+ HTMLMediaElement&) override {
+ return nullptr;
+ }
};
class VideoPainterTestForSPv2 : public ::testing::Test {

Powered by Google App Engine
This is Rietveld 408576698