| 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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 } | 68 } |
| 69 | 69 |
| 70 WebKit::WebHyphenator* ContentRendererClient::OverrideWebHyphenator() { | 70 WebKit::WebHyphenator* ContentRendererClient::OverrideWebHyphenator() { |
| 71 return NULL; | 71 return NULL; |
| 72 } | 72 } |
| 73 | 73 |
| 74 WebKit::WebThemeEngine* ContentRendererClient::OverrideThemeEngine() { | 74 WebKit::WebThemeEngine* ContentRendererClient::OverrideThemeEngine() { |
| 75 return NULL; | 75 return NULL; |
| 76 } | 76 } |
| 77 | 77 |
| 78 WebKit::WebSpeechSynthesizer* ContentRendererClient::OverrideSpeechSynthesizer( |
| 79 WebKit::WebSpeechSynthesizerClient* client) { |
| 80 return NULL; |
| 81 } |
| 82 |
| 78 bool ContentRendererClient::RunIdleHandlerWhenWidgetsHidden() { | 83 bool ContentRendererClient::RunIdleHandlerWhenWidgetsHidden() { |
| 79 return true; | 84 return true; |
| 80 } | 85 } |
| 81 | 86 |
| 82 bool ContentRendererClient::AllowPopup() { | 87 bool ContentRendererClient::AllowPopup() { |
| 83 return false; | 88 return false; |
| 84 } | 89 } |
| 85 | 90 |
| 86 bool ContentRendererClient::HandleNavigation( | 91 bool ContentRendererClient::HandleNavigation( |
| 87 WebKit::WebFrame* frame, | 92 WebKit::WebFrame* frame, |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 151 | 156 |
| 152 MessageLoop* ContentRendererClient::OverrideCompositorMessageLoop() const { | 157 MessageLoop* ContentRendererClient::OverrideCompositorMessageLoop() const { |
| 153 return NULL; | 158 return NULL; |
| 154 } | 159 } |
| 155 | 160 |
| 156 bool ContentRendererClient::ShouldCreateCompositorInputHandler() const { | 161 bool ContentRendererClient::ShouldCreateCompositorInputHandler() const { |
| 157 return true; | 162 return true; |
| 158 } | 163 } |
| 159 | 164 |
| 160 } // namespace content | 165 } // namespace content |
| OLD | NEW |