OLD | NEW |
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 19 matching lines...) Expand all Loading... |
30 RenderView* render_view, | 30 RenderView* render_view, |
31 const base::FilePath& plugin_path) { | 31 const base::FilePath& plugin_path) { |
32 return NULL; | 32 return NULL; |
33 } | 33 } |
34 | 34 |
35 bool ContentRendererClient::HasErrorPage(int http_status_code, | 35 bool ContentRendererClient::HasErrorPage(int http_status_code, |
36 std::string* error_domain) { | 36 std::string* error_domain) { |
37 return false; | 37 return false; |
38 } | 38 } |
39 | 39 |
40 webkit_media::WebMediaPlayerImpl* | 40 WebMediaPlayerImpl* |
41 ContentRendererClient::OverrideCreateWebMediaPlayer( | 41 ContentRendererClient::OverrideCreateWebMediaPlayer( |
42 RenderView* render_view, | 42 RenderView* render_view, |
43 WebKit::WebFrame* frame, | 43 WebKit::WebFrame* frame, |
44 WebKit::WebMediaPlayerClient* client, | 44 WebKit::WebMediaPlayerClient* client, |
45 base::WeakPtr<webkit_media::WebMediaPlayerDelegate> delegate, | 45 base::WeakPtr<WebMediaPlayerDelegate> delegate, |
46 const webkit_media::WebMediaPlayerParams& params) { | 46 const WebMediaPlayerParams& params) { |
47 return NULL; | 47 return NULL; |
48 } | 48 } |
49 | 49 |
50 WebKit::WebMediaStreamCenter* | 50 WebKit::WebMediaStreamCenter* |
51 ContentRendererClient::OverrideCreateWebMediaStreamCenter( | 51 ContentRendererClient::OverrideCreateWebMediaStreamCenter( |
52 WebKit::WebMediaStreamCenterClient* client) { | 52 WebKit::WebMediaStreamCenterClient* client) { |
53 return NULL; | 53 return NULL; |
54 } | 54 } |
55 | 55 |
56 WebKit::WebRTCPeerConnectionHandler* | 56 WebKit::WebRTCPeerConnectionHandler* |
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
165 bool ContentRendererClient::AllowBrowserPlugin( | 165 bool ContentRendererClient::AllowBrowserPlugin( |
166 WebKit::WebPluginContainer* container) const { | 166 WebKit::WebPluginContainer* container) const { |
167 return false; | 167 return false; |
168 } | 168 } |
169 | 169 |
170 bool ContentRendererClient::AllowPepperMediaStreamAPI(const GURL& url) const { | 170 bool ContentRendererClient::AllowPepperMediaStreamAPI(const GURL& url) const { |
171 return false; | 171 return false; |
172 } | 172 } |
173 | 173 |
174 } // namespace content | 174 } // namespace content |
OLD | NEW |