| 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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 WebKit::WebAudioDevice* | 63 WebKit::WebAudioDevice* |
| 64 ContentRendererClient::OverrideCreateAudioDevice( | 64 ContentRendererClient::OverrideCreateAudioDevice( |
| 65 double sample_rate) { | 65 double sample_rate) { |
| 66 return NULL; | 66 return NULL; |
| 67 } | 67 } |
| 68 | 68 |
| 69 WebKit::WebClipboard* ContentRendererClient::OverrideWebClipboard() { | 69 WebKit::WebClipboard* ContentRendererClient::OverrideWebClipboard() { |
| 70 return NULL; | 70 return NULL; |
| 71 } | 71 } |
| 72 | 72 |
| 73 WebKit::WebHyphenator* ContentRendererClient::OverrideWebHyphenator() { | |
| 74 return NULL; | |
| 75 } | |
| 76 | |
| 77 WebKit::WebThemeEngine* ContentRendererClient::OverrideThemeEngine() { | 73 WebKit::WebThemeEngine* ContentRendererClient::OverrideThemeEngine() { |
| 78 return NULL; | 74 return NULL; |
| 79 } | 75 } |
| 80 | 76 |
| 81 WebKit::WebSpeechSynthesizer* ContentRendererClient::OverrideSpeechSynthesizer( | 77 WebKit::WebSpeechSynthesizer* ContentRendererClient::OverrideSpeechSynthesizer( |
| 82 WebKit::WebSpeechSynthesizerClient* client) { | 78 WebKit::WebSpeechSynthesizerClient* client) { |
| 83 return NULL; | 79 return NULL; |
| 84 } | 80 } |
| 85 | 81 |
| 86 WebKit::WebCrypto* ContentRendererClient::OverrideWebCrypto() { | 82 WebKit::WebCrypto* ContentRendererClient::OverrideWebCrypto() { |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 175 bool ContentRendererClient::AllowBrowserPlugin( | 171 bool ContentRendererClient::AllowBrowserPlugin( |
| 176 WebKit::WebPluginContainer* container) const { | 172 WebKit::WebPluginContainer* container) const { |
| 177 return false; | 173 return false; |
| 178 } | 174 } |
| 179 | 175 |
| 180 bool ContentRendererClient::AllowPepperMediaStreamAPI(const GURL& url) const { | 176 bool ContentRendererClient::AllowPepperMediaStreamAPI(const GURL& url) const { |
| 181 return false; | 177 return false; |
| 182 } | 178 } |
| 183 | 179 |
| 184 } // namespace content | 180 } // namespace content |
| OLD | NEW |