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

Side by Side Diff: content/public/renderer/content_renderer_client.cc

Issue 18590002: Migrate MediaStream test code from content/shell/renderer/ to content/test/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 5 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 | Annotate | Revision Log
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 namespace content { 7 namespace content {
8 8
9 SkBitmap* ContentRendererClient::GetSadPluginBitmap() { 9 SkBitmap* ContentRendererClient::GetSadPluginBitmap() {
10 return NULL; 10 return NULL;
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 WebKit::WebMediaStreamCenterClient* client) { 47 WebKit::WebMediaStreamCenterClient* client) {
48 return NULL; 48 return NULL;
49 } 49 }
50 50
51 WebKit::WebRTCPeerConnectionHandler* 51 WebKit::WebRTCPeerConnectionHandler*
52 ContentRendererClient::OverrideCreateWebRTCPeerConnectionHandler( 52 ContentRendererClient::OverrideCreateWebRTCPeerConnectionHandler(
53 WebKit::WebRTCPeerConnectionHandlerClient* client) { 53 WebKit::WebRTCPeerConnectionHandlerClient* client) {
54 return NULL; 54 return NULL;
55 } 55 }
56 56
57 webkit_media::MediaStreamClient*
58 ContentRendererClient::OverrideCreateMediaStreamClient() {
59 return NULL;
60 }
61
62 WebKit::WebMIDIAccessor* 57 WebKit::WebMIDIAccessor*
63 ContentRendererClient::OverrideCreateMIDIAccessor( 58 ContentRendererClient::OverrideCreateMIDIAccessor(
64 WebKit::WebMIDIAccessorClient* client) { 59 WebKit::WebMIDIAccessorClient* client) {
65 return NULL; 60 return NULL;
66 } 61 }
67 62
68 WebKit::WebClipboard* ContentRendererClient::OverrideWebClipboard() { 63 WebKit::WebClipboard* ContentRendererClient::OverrideWebClipboard() {
69 return NULL; 64 return NULL;
70 } 65 }
71 66
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
165 bool ContentRendererClient::AllowBrowserPlugin( 160 bool ContentRendererClient::AllowBrowserPlugin(
166 WebKit::WebPluginContainer* container) const { 161 WebKit::WebPluginContainer* container) const {
167 return false; 162 return false;
168 } 163 }
169 164
170 bool ContentRendererClient::AllowPepperMediaStreamAPI(const GURL& url) const { 165 bool ContentRendererClient::AllowPepperMediaStreamAPI(const GURL& url) const {
171 return false; 166 return false;
172 } 167 }
173 168
174 } // namespace content 169 } // namespace content
OLDNEW
« no previous file with comments | « content/public/renderer/content_renderer_client.h ('k') | content/public/test/layouttest_support.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698