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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
56 WebKit::WebRTCPeerConnectionHandler* | 56 WebKit::WebRTCPeerConnectionHandler* |
57 ContentRendererClient::OverrideCreateWebRTCPeerConnectionHandler( | 57 ContentRendererClient::OverrideCreateWebRTCPeerConnectionHandler( |
58 WebKit::WebRTCPeerConnectionHandlerClient* client) { | 58 WebKit::WebRTCPeerConnectionHandlerClient* client) { |
59 return NULL; | 59 return NULL; |
60 } | 60 } |
61 | 61 |
62 WebKit::WebClipboard* ContentRendererClient::OverrideWebClipboard() { | 62 WebKit::WebClipboard* ContentRendererClient::OverrideWebClipboard() { |
63 return NULL; | 63 return NULL; |
64 } | 64 } |
65 | 65 |
66 WebKit::WebMimeRegistry* ContentRendererClient::OverrideWebMimeRegistry() { | |
67 return NULL; | |
68 } | |
69 | |
70 WebKit::WebHyphenator* ContentRendererClient::OverrideWebHyphenator() { | 66 WebKit::WebHyphenator* ContentRendererClient::OverrideWebHyphenator() { |
71 return NULL; | 67 return NULL; |
72 } | 68 } |
73 | 69 |
74 WebKit::WebThemeEngine* ContentRendererClient::OverrideThemeEngine() { | 70 WebKit::WebThemeEngine* ContentRendererClient::OverrideThemeEngine() { |
75 return NULL; | 71 return NULL; |
76 } | 72 } |
77 | 73 |
78 WebKit::WebSpeechSynthesizer* ContentRendererClient::OverrideSpeechSynthesizer( | 74 WebKit::WebSpeechSynthesizer* ContentRendererClient::OverrideSpeechSynthesizer( |
79 WebKit::WebSpeechSynthesizerClient* client) { | 75 WebKit::WebSpeechSynthesizerClient* client) { |
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
163 bool ContentRendererClient::AllowBrowserPlugin( | 159 bool ContentRendererClient::AllowBrowserPlugin( |
164 WebKit::WebPluginContainer* container) const { | 160 WebKit::WebPluginContainer* container) const { |
165 return false; | 161 return false; |
166 } | 162 } |
167 | 163 |
168 bool ContentRendererClient::AllowPepperMediaStreamAPI(const GURL& url) const { | 164 bool ContentRendererClient::AllowPepperMediaStreamAPI(const GURL& url) const { |
169 return false; | 165 return false; |
170 } | 166 } |
171 | 167 |
172 } // namespace content | 168 } // namespace content |
OLD | NEW |