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 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
120 | 120 |
121 unsigned long long ContentRendererClient::VisitedLinkHash( | 121 unsigned long long ContentRendererClient::VisitedLinkHash( |
122 const char* canonical_url, size_t length) { | 122 const char* canonical_url, size_t length) { |
123 return 0LL; | 123 return 0LL; |
124 } | 124 } |
125 | 125 |
126 bool ContentRendererClient::IsLinkVisited(unsigned long long link_hash) { | 126 bool ContentRendererClient::IsLinkVisited(unsigned long long link_hash) { |
127 return false; | 127 return false; |
128 } | 128 } |
129 | 129 |
130 WebKit::WebPrescientNetworking* ContentRendererClient::GetPrescientNetworking() { | |
brettw
2013/05/21 18:03:56
Line length.
kouhei (in TOK)
2013/05/21 23:42:40
Done.
| |
131 return NULL; | |
132 } | |
133 | |
130 bool ContentRendererClient::ShouldOverridePageVisibilityState( | 134 bool ContentRendererClient::ShouldOverridePageVisibilityState( |
131 const RenderView* render_view, | 135 const RenderView* render_view, |
132 WebKit::WebPageVisibilityState* override_state) const { | 136 WebKit::WebPageVisibilityState* override_state) const { |
133 return false; | 137 return false; |
134 } | 138 } |
135 | 139 |
136 bool ContentRendererClient::HandleGetCookieRequest( | 140 bool ContentRendererClient::HandleGetCookieRequest( |
137 RenderView* sender, | 141 RenderView* sender, |
138 const GURL& url, | 142 const GURL& url, |
139 const GURL& first_party_for_cookies, | 143 const GURL& first_party_for_cookies, |
(...skipping 16 matching lines...) Expand all Loading... | |
156 | 160 |
157 MessageLoop* ContentRendererClient::OverrideCompositorMessageLoop() const { | 161 MessageLoop* ContentRendererClient::OverrideCompositorMessageLoop() const { |
158 return NULL; | 162 return NULL; |
159 } | 163 } |
160 | 164 |
161 bool ContentRendererClient::ShouldCreateCompositorInputHandler() const { | 165 bool ContentRendererClient::ShouldCreateCompositorInputHandler() const { |
162 return true; | 166 return true; |
163 } | 167 } |
164 | 168 |
165 } // namespace content | 169 } // namespace content |
OLD | NEW |