| 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 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 | 131 |
| 132 bool ContentRendererClient::IsLinkVisited(unsigned long long link_hash) { | 132 bool ContentRendererClient::IsLinkVisited(unsigned long long link_hash) { |
| 133 return false; | 133 return false; |
| 134 } | 134 } |
| 135 | 135 |
| 136 blink::WebPrescientNetworking* | 136 blink::WebPrescientNetworking* |
| 137 ContentRendererClient::GetPrescientNetworking() { | 137 ContentRendererClient::GetPrescientNetworking() { |
| 138 return NULL; | 138 return NULL; |
| 139 } | 139 } |
| 140 | 140 |
| 141 blink::WebCredentialManager* |
| 142 ContentRendererClient::GetCredentialManager() { |
| 143 return NULL; |
| 144 } |
| 145 |
| 141 bool ContentRendererClient::ShouldOverridePageVisibilityState( | 146 bool ContentRendererClient::ShouldOverridePageVisibilityState( |
| 142 const RenderFrame* render_frame, | 147 const RenderFrame* render_frame, |
| 143 blink::WebPageVisibilityState* override_state) { | 148 blink::WebPageVisibilityState* override_state) { |
| 144 return false; | 149 return false; |
| 145 } | 150 } |
| 146 | 151 |
| 147 const void* ContentRendererClient::CreatePPAPIInterface( | 152 const void* ContentRendererClient::CreatePPAPIInterface( |
| 148 const std::string& interface_name) { | 153 const std::string& interface_name) { |
| 149 return NULL; | 154 return NULL; |
| 150 } | 155 } |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 184 bool ContentRendererClient::IsPluginAllowedToUseVideoDecodeAPI( | 189 bool ContentRendererClient::IsPluginAllowedToUseVideoDecodeAPI( |
| 185 const GURL& url) { | 190 const GURL& url) { |
| 186 return false; | 191 return false; |
| 187 } | 192 } |
| 188 | 193 |
| 189 bool ContentRendererClient::IsPluginAllowedToUseDevChannelAPIs() { | 194 bool ContentRendererClient::IsPluginAllowedToUseDevChannelAPIs() { |
| 190 return false; | 195 return false; |
| 191 } | 196 } |
| 192 | 197 |
| 193 } // namespace content | 198 } // namespace content |
| OLD | NEW |