| 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 10 matching lines...) Expand all Loading... |
| 21 bool ContentRendererClient::OverrideCreatePlugin( | 21 bool ContentRendererClient::OverrideCreatePlugin( |
| 22 RenderView* render_view, | 22 RenderView* render_view, |
| 23 WebKit::WebFrame* frame, | 23 WebKit::WebFrame* frame, |
| 24 const WebKit::WebPluginParams& params, | 24 const WebKit::WebPluginParams& params, |
| 25 WebKit::WebPlugin** plugin) { | 25 WebKit::WebPlugin** plugin) { |
| 26 return false; | 26 return false; |
| 27 } | 27 } |
| 28 | 28 |
| 29 WebKit::WebPlugin* ContentRendererClient::CreatePluginReplacement( | 29 WebKit::WebPlugin* ContentRendererClient::CreatePluginReplacement( |
| 30 RenderView* render_view, | 30 RenderView* render_view, |
| 31 const FilePath& plugin_path) { | 31 const base::FilePath& plugin_path) { |
| 32 return NULL; | 32 return NULL; |
| 33 } | 33 } |
| 34 | 34 |
| 35 bool ContentRendererClient::HasErrorPage(int http_status_code, | 35 bool ContentRendererClient::HasErrorPage(int http_status_code, |
| 36 std::string* error_domain) { | 36 std::string* error_domain) { |
| 37 return false; | 37 return false; |
| 38 } | 38 } |
| 39 | 39 |
| 40 webkit_media::WebMediaPlayerImpl* | 40 webkit_media::WebMediaPlayerImpl* |
| 41 ContentRendererClient::OverrideCreateWebMediaPlayer( | 41 ContentRendererClient::OverrideCreateWebMediaPlayer( |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 | 110 |
| 111 bool ContentRendererClient::HandleSetCookieRequest( | 111 bool ContentRendererClient::HandleSetCookieRequest( |
| 112 RenderView* sender, | 112 RenderView* sender, |
| 113 const GURL& url, | 113 const GURL& url, |
| 114 const GURL& first_party_for_cookies, | 114 const GURL& first_party_for_cookies, |
| 115 const std::string& value) { | 115 const std::string& value) { |
| 116 return false; | 116 return false; |
| 117 } | 117 } |
| 118 | 118 |
| 119 } // namespace content | 119 } // namespace content |
| OLD | NEW |