Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(159)

Side by Side Diff: content/public/renderer/content_renderer_client.cc

Issue 10827107: Allow transitions to WebUI pages which are extension urls (new tab page is the relevant example). (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « content/public/renderer/content_renderer_client.h ('k') | content/renderer/render_view_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « content/public/renderer/content_renderer_client.h ('k') | content/renderer/render_view_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698