| 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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 return false; | 56 return false; |
| 57 } | 57 } |
| 58 | 58 |
| 59 bool ContentRendererClient::ShouldFork(WebKit::WebFrame* frame, | 59 bool ContentRendererClient::ShouldFork(WebKit::WebFrame* frame, |
| 60 const GURL& url, | 60 const GURL& url, |
| 61 bool is_initial_navigation, | 61 bool is_initial_navigation, |
| 62 bool* send_referrer) { | 62 bool* send_referrer) { |
| 63 return false; | 63 return false; |
| 64 } | 64 } |
| 65 | 65 |
| 66 bool ContentRendererClient::WillSendRequest(WebKit::WebFrame* frame, | 66 bool ContentRendererClient::WillSendRequest( |
| 67 const GURL& url, | 67 WebKit::WebFrame* frame, |
| 68 GURL* new_url) { | 68 PageTransition transition_type, |
| 69 const GURL& url, |
| 70 GURL* new_url) { |
| 69 return false; | 71 return false; |
| 70 } | 72 } |
| 71 | 73 |
| 72 bool ContentRendererClient::ShouldPumpEventsDuringCookieMessage() { | 74 bool ContentRendererClient::ShouldPumpEventsDuringCookieMessage() { |
| 73 return false; | 75 return false; |
| 74 } | 76 } |
| 75 | 77 |
| 76 unsigned long long ContentRendererClient::VisitedLinkHash( | 78 unsigned long long ContentRendererClient::VisitedLinkHash( |
| 77 const char* canonical_url, size_t length) { | 79 const char* canonical_url, size_t length) { |
| 78 return 0LL; | 80 return 0LL; |
| (...skipping 19 matching lines...) Expand all Loading... |
| 98 | 100 |
| 99 bool ContentRendererClient::HandleSetCookieRequest( | 101 bool ContentRendererClient::HandleSetCookieRequest( |
| 100 RenderView* sender, | 102 RenderView* sender, |
| 101 const GURL& url, | 103 const GURL& url, |
| 102 const GURL& first_party_for_cookies, | 104 const GURL& first_party_for_cookies, |
| 103 const std::string& value) { | 105 const std::string& value) { |
| 104 return false; | 106 return false; |
| 105 } | 107 } |
| 106 | 108 |
| 107 } // namespace content | 109 } // namespace content |
| OLD | NEW |