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

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: 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* 57 MediaStreamClient* ContentRendererClient::OverrideCreateMediaStreamClient() {
58 ContentRendererClient::OverrideCreateMediaStreamClient() {
59 return NULL; 58 return NULL;
60 } 59 }
61 60
62 WebKit::WebMIDIAccessor* 61 WebKit::WebMIDIAccessor*
63 ContentRendererClient::OverrideCreateMIDIAccessor( 62 ContentRendererClient::OverrideCreateMIDIAccessor(
64 WebKit::WebMIDIAccessorClient* client) { 63 WebKit::WebMIDIAccessorClient* client) {
65 return NULL; 64 return NULL;
66 } 65 }
67 66
68 WebKit::WebClipboard* ContentRendererClient::OverrideWebClipboard() { 67 WebKit::WebClipboard* ContentRendererClient::OverrideWebClipboard() {
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
165 bool ContentRendererClient::AllowBrowserPlugin( 164 bool ContentRendererClient::AllowBrowserPlugin(
166 WebKit::WebPluginContainer* container) const { 165 WebKit::WebPluginContainer* container) const {
167 return false; 166 return false;
168 } 167 }
169 168
170 bool ContentRendererClient::AllowPepperMediaStreamAPI(const GURL& url) const { 169 bool ContentRendererClient::AllowPepperMediaStreamAPI(const GURL& url) const {
171 return false; 170 return false;
172 } 171 }
173 172
174 } // namespace content 173 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698