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

Side by Side 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/public/renderer/content_renderer_client.h" 5 #include "content/public/renderer/content_renderer_client.h"
6 6
7 #include "content/public/renderer/media_stream_renderer_factory.h" 7 #include "content/public/renderer/media_stream_renderer_factory.h"
8 #include "media/base/renderer_factory.h" 8 #include "media/base/renderer_factory.h"
9 #include "third_party/WebKit/public/platform/WebAudioDevice.h" 9 #include "third_party/WebKit/public/platform/WebAudioDevice.h"
10 #include "third_party/WebKit/public/platform/WebMediaStreamCenter.h" 10 #include "third_party/WebKit/public/platform/WebMediaStreamCenter.h"
11 #include "third_party/WebKit/public/platform/WebRTCPeerConnectionHandler.h" 11 #include "third_party/WebKit/public/platform/WebRTCPeerConnectionHandler.h"
12 #include "third_party/WebKit/public/platform/WebSpeechSynthesizer.h" 12 #include "third_party/WebKit/public/platform/WebSpeechSynthesizer.h"
13 #include "third_party/WebKit/public/platform/modules/webmidi/WebMIDIAccessor.h" 13 #include "third_party/WebKit/public/platform/modules/webmidi/WebMIDIAccessor.h"
14 #include "third_party/WebKit/public/web/WebMediaIPH.h"
14 #include "ui/gfx/icc_profile.h" 15 #include "ui/gfx/icc_profile.h"
15 #include "url/gurl.h" 16 #include "url/gurl.h"
16 17
17 namespace content { 18 namespace content {
18 19
19 SkBitmap* ContentRendererClient::GetSadPluginBitmap() { 20 SkBitmap* ContentRendererClient::GetSadPluginBitmap() {
20 return nullptr; 21 return nullptr;
21 } 22 }
22 23
23 SkBitmap* ContentRendererClient::GetSadWebViewBitmap() { 24 SkBitmap* ContentRendererClient::GetSadWebViewBitmap() {
(...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after
250 251
251 std::unique_ptr<base::TaskScheduler::InitParams> 252 std::unique_ptr<base::TaskScheduler::InitParams>
252 ContentRendererClient::GetTaskSchedulerInitParams() { 253 ContentRendererClient::GetTaskSchedulerInitParams() {
253 return nullptr; 254 return nullptr;
254 } 255 }
255 256
256 bool ContentRendererClient::AllowMediaSuspend() { 257 bool ContentRendererClient::AllowMediaSuspend() {
257 return true; 258 return true;
258 } 259 }
259 260
261 std::unique_ptr<blink::WebMediaIPH> ContentRendererClient::CreateWebMediaIPH(
262 content::RenderFrame* render_frame) {
263 return nullptr;
264 }
265
260 } // namespace content 266 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698