fixup! [VD][MM] Notify video playing url 34/320334/1
authorMichal Jurkiewicz <m.jurkiewicz@samsung.com>
Wed, 13 Nov 2024 10:14:59 +0000 (11:14 +0100)
committerMichal Jurkiewicz <m.jurkiewicz@samsung.com>
Wed, 13 Nov 2024 10:14:59 +0000 (11:14 +0100)
Fix unittests buildbreak:
gen/third_party/blink/public/mojom/widget/platform_widget.mojom.h:205:16:
note: unimplemented pure virtual method 'NotifyUrlForPlayingVideo' in 'FakeRenderWidgetHost'
205 |   virtual void NotifyUrlForPlayingVideo(const std::string& url) = 0;
    |                ^

Change-Id: I47dbe3d91e5d20b464184aed57438046586719ad

content/public/test/fake_render_widget_host.h

index fc3f3ec6da97796de52c5c4e2b3c69b4e5cd458f..702216208df8c13d9f786e09a4ab91926c5acab5 100644 (file)
@@ -64,6 +64,7 @@ class FakeRenderWidgetHost : public blink::mojom::FrameWidgetHost,
   void NotifyTrackInfoToBrowser(int active_track_id,
                                 const std::string& url,
                                 const std::string& lang) override {}
+  void NotifyUrlForPlayingVideo(const std::string& url) override {}
 #endif
   void UpdateTooltipUnderCursor(
       const std::u16string& tooltip_text,