| 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 std::string ContentRendererClient::GetDefaultEncoding() { | 13 std::string ContentRendererClient::GetDefaultEncoding() { |
| 14 return std::string(); | 14 return std::string(); |
| 15 } | 15 } |
| 16 | 16 |
| 17 bool ContentRendererClient::OverrideCreateRenderViewImpl( |
| 18 RenderViewImplParams* params, |
| 19 RenderViewImpl** render_view_impl) { |
| 20 return false; |
| 21 } |
| 22 |
| 17 bool ContentRendererClient::OverrideCreatePlugin( | 23 bool ContentRendererClient::OverrideCreatePlugin( |
| 18 RenderView* render_view, | 24 RenderView* render_view, |
| 19 WebKit::WebFrame* frame, | 25 WebKit::WebFrame* frame, |
| 20 const WebKit::WebPluginParams& params, | 26 const WebKit::WebPluginParams& params, |
| 21 WebKit::WebPlugin** plugin) { | 27 WebKit::WebPlugin** plugin) { |
| 22 return false; | 28 return false; |
| 23 } | 29 } |
| 24 | 30 |
| 25 WebKit::WebPlugin* ContentRendererClient::CreatePluginReplacement( | 31 WebKit::WebPlugin* ContentRendererClient::CreatePluginReplacement( |
| 26 RenderView* render_view, | 32 RenderView* render_view, |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 | 106 |
| 101 bool ContentRendererClient::HandleSetCookieRequest( | 107 bool ContentRendererClient::HandleSetCookieRequest( |
| 102 RenderView* sender, | 108 RenderView* sender, |
| 103 const GURL& url, | 109 const GURL& url, |
| 104 const GURL& first_party_for_cookies, | 110 const GURL& first_party_for_cookies, |
| 105 const std::string& value) { | 111 const std::string& value) { |
| 106 return false; | 112 return false; |
| 107 } | 113 } |
| 108 | 114 |
| 109 } // namespace content | 115 } // namespace content |
| OLD | NEW |