| 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 "content/public/renderer/media_stream_renderer_factory.h" | 7 #include "content/public/renderer/media_stream_renderer_factory.h" |
| 8 #include "media/base/renderer_factory.h" | 8 #include "media/base/renderer_factory.h" |
| 9 #include "third_party/WebKit/public/platform/modules/app_banner/WebAppBannerClie
nt.h" | 9 #include "third_party/WebKit/public/platform/modules/app_banner/WebAppBannerClie
nt.h" |
| 10 #include "third_party/WebKit/public/web/WebPluginPlaceholder.h" | 10 #include "third_party/WebKit/public/web/WebPluginPlaceholder.h" |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 | 117 |
| 118 bool ContentRendererClient::ShouldFork(blink::WebFrame* frame, | 118 bool ContentRendererClient::ShouldFork(blink::WebFrame* frame, |
| 119 const GURL& url, | 119 const GURL& url, |
| 120 const std::string& http_method, | 120 const std::string& http_method, |
| 121 bool is_initial_navigation, | 121 bool is_initial_navigation, |
| 122 bool is_server_redirect, | 122 bool is_server_redirect, |
| 123 bool* send_referrer) { | 123 bool* send_referrer) { |
| 124 return false; | 124 return false; |
| 125 } | 125 } |
| 126 | 126 |
| 127 bool ContentRendererClient::ShouldForwardToGuestContainer( | |
| 128 const IPC::Message& msg) { | |
| 129 return false; | |
| 130 } | |
| 131 | |
| 132 bool ContentRendererClient::WillSendRequest( | 127 bool ContentRendererClient::WillSendRequest( |
| 133 blink::WebFrame* frame, | 128 blink::WebFrame* frame, |
| 134 ui::PageTransition transition_type, | 129 ui::PageTransition transition_type, |
| 135 const GURL& url, | 130 const GURL& url, |
| 136 const GURL& first_party_for_cookies, | 131 const GURL& first_party_for_cookies, |
| 137 GURL* new_url) { | 132 GURL* new_url) { |
| 138 return false; | 133 return false; |
| 139 } | 134 } |
| 140 | 135 |
| 141 unsigned long long ContentRendererClient::VisitedLinkHash( | 136 unsigned long long ContentRendererClient::VisitedLinkHash( |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 226 std::string ContentRendererClient::GetUserAgentOverrideForURL(const GURL& url) { | 221 std::string ContentRendererClient::GetUserAgentOverrideForURL(const GURL& url) { |
| 227 return std::string(); | 222 return std::string(); |
| 228 } | 223 } |
| 229 | 224 |
| 230 scoped_ptr<blink::WebAppBannerClient> | 225 scoped_ptr<blink::WebAppBannerClient> |
| 231 ContentRendererClient::CreateAppBannerClient(RenderFrame* render_frame) { | 226 ContentRendererClient::CreateAppBannerClient(RenderFrame* render_frame) { |
| 232 return nullptr; | 227 return nullptr; |
| 233 } | 228 } |
| 234 | 229 |
| 235 } // namespace content | 230 } // namespace content |
| OLD | NEW |