| 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 #include "cc/blimp/remote_compositor_bridge.h" | 7 #include "cc/blimp/remote_compositor_bridge.h" |
| 8 #include "content/public/renderer/media_stream_renderer_factory.h" | 8 #include "content/public/renderer/media_stream_renderer_factory.h" |
| 9 #include "media/base/renderer_factory.h" | 9 #include "media/base/renderer_factory.h" |
| 10 #include "ui/gfx/icc_profile.h" | 10 #include "ui/gfx/icc_profile.h" |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 | 120 |
| 121 bool ContentRendererClient::ShouldFork(blink::WebLocalFrame* frame, | 121 bool ContentRendererClient::ShouldFork(blink::WebLocalFrame* frame, |
| 122 const GURL& url, | 122 const GURL& url, |
| 123 const std::string& http_method, | 123 const std::string& http_method, |
| 124 bool is_initial_navigation, | 124 bool is_initial_navigation, |
| 125 bool is_server_redirect, | 125 bool is_server_redirect, |
| 126 bool* send_referrer) { | 126 bool* send_referrer) { |
| 127 return false; | 127 return false; |
| 128 } | 128 } |
| 129 | 129 |
| 130 bool ContentRendererClient::WillSendRequest( | 130 bool ContentRendererClient::WillSendRequest(blink::WebLocalFrame* frame, |
| 131 blink::WebFrame* frame, | 131 ui::PageTransition transition_type, |
| 132 ui::PageTransition transition_type, | 132 const blink::WebURL& url, |
| 133 const blink::WebURL& url, | 133 GURL* new_url) { |
| 134 GURL* new_url) { | |
| 135 return false; | 134 return false; |
| 136 } | 135 } |
| 137 | 136 |
| 138 bool ContentRendererClient::IsPrefetchOnly( | 137 bool ContentRendererClient::IsPrefetchOnly( |
| 139 RenderFrame* render_frame, | 138 RenderFrame* render_frame, |
| 140 const blink::WebURLRequest& request) { | 139 const blink::WebURLRequest& request) { |
| 141 return false; | 140 return false; |
| 142 } | 141 } |
| 143 | 142 |
| 144 unsigned long long ContentRendererClient::VisitedLinkHash( | 143 unsigned long long ContentRendererClient::VisitedLinkHash( |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 232 | 231 |
| 233 bool ContentRendererClient::ShouldEnforceWebRTCRoutingPreferences() { | 232 bool ContentRendererClient::ShouldEnforceWebRTCRoutingPreferences() { |
| 234 return true; | 233 return true; |
| 235 } | 234 } |
| 236 | 235 |
| 237 GURL ContentRendererClient::OverrideFlashEmbedWithHTML(const GURL& url) { | 236 GURL ContentRendererClient::OverrideFlashEmbedWithHTML(const GURL& url) { |
| 238 return GURL(); | 237 return GURL(); |
| 239 } | 238 } |
| 240 | 239 |
| 241 } // namespace content | 240 } // namespace content |
| OLD | NEW |