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