| 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; |
| 11 } | 11 } |
| 12 | 12 |
| 13 SkBitmap* ContentRendererClient::GetSadWebViewBitmap() { | 13 SkBitmap* ContentRendererClient::GetSadWebViewBitmap() { |
| 14 return NULL; | 14 return NULL; |
| 15 } | 15 } |
| 16 | 16 |
| 17 std::string ContentRendererClient::GetDefaultEncoding() { | |
| 18 return std::string(); | |
| 19 } | |
| 20 | |
| 21 bool ContentRendererClient::OverrideCreatePlugin( | 17 bool ContentRendererClient::OverrideCreatePlugin( |
| 22 RenderFrame* render_frame, | 18 RenderFrame* render_frame, |
| 23 blink::WebLocalFrame* frame, | 19 blink::WebLocalFrame* frame, |
| 24 const blink::WebPluginParams& params, | 20 const blink::WebPluginParams& params, |
| 25 blink::WebPlugin** plugin) { | 21 blink::WebPlugin** plugin) { |
| 26 return false; | 22 return false; |
| 27 } | 23 } |
| 28 | 24 |
| 29 blink::WebPlugin* ContentRendererClient::CreatePluginReplacement( | 25 blink::WebPlugin* ContentRendererClient::CreatePluginReplacement( |
| 30 RenderFrame* render_frame, | 26 RenderFrame* render_frame, |
| (...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 194 RenderFrame* render_frame, | 190 RenderFrame* render_frame, |
| 195 const std::string& mime_type) { | 191 const std::string& mime_type) { |
| 196 return NULL; | 192 return NULL; |
| 197 } | 193 } |
| 198 | 194 |
| 199 std::string ContentRendererClient::GetUserAgentOverrideForURL(const GURL& url) { | 195 std::string ContentRendererClient::GetUserAgentOverrideForURL(const GURL& url) { |
| 200 return std::string(); | 196 return std::string(); |
| 201 } | 197 } |
| 202 | 198 |
| 203 } // namespace content | 199 } // namespace content |
| OLD | NEW |