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

Unified Diff: content/public/renderer/content_renderer_client.cc

Issue 2943983003: chrome/blink: Add functionality for in-product help for media elements. (Closed)
Patch Set: Created 3 years, 6 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: content/public/renderer/content_renderer_client.cc
diff --git a/content/public/renderer/content_renderer_client.cc b/content/public/renderer/content_renderer_client.cc
index 06afdb74780287a1080fc5f774e745919ba9edb7..2a058a3b27348ea8db95538f6561ac3a74932d87 100644
--- a/content/public/renderer/content_renderer_client.cc
+++ b/content/public/renderer/content_renderer_client.cc
@@ -11,6 +11,7 @@
#include "third_party/WebKit/public/platform/WebRTCPeerConnectionHandler.h"
#include "third_party/WebKit/public/platform/WebSpeechSynthesizer.h"
#include "third_party/WebKit/public/platform/modules/webmidi/WebMIDIAccessor.h"
+#include "third_party/WebKit/public/web/WebMediaIPH.h"
#include "ui/gfx/icc_profile.h"
#include "url/gurl.h"
@@ -257,4 +258,9 @@ bool ContentRendererClient::AllowMediaSuspend() {
return true;
}
+std::unique_ptr<blink::WebMediaIPH> ContentRendererClient::CreateWebMediaIPH(
+ content::RenderFrame* render_frame) {
+ return nullptr;
+}
+
} // namespace content

Powered by Google App Engine
This is Rietveld 408576698