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

Unified Diff: content/browser/tab_contents/tab_contents.cc

Issue 6621006: Take out the is_content_filtered bool that gets passed around betwen renderer... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/browser/tab_contents/provisional_load_details.cc ('k') | webkit/glue/resource_loader_bridge.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/tab_contents/tab_contents.cc
===================================================================
--- content/browser/tab_contents/tab_contents.cc (revision 76828)
+++ content/browser/tab_contents/tab_contents.cc (working copy)
@@ -1362,7 +1362,7 @@
ProvisionalLoadDetails details(
is_main_frame,
controller_.IsURLInPageNavigation(validated_url),
- validated_url, std::string(), false, is_error_page, frame_id);
+ validated_url, std::string(), is_error_page, frame_id);
NotificationService::current()->Notify(
NotificationType::FRAME_PROVISIONAL_LOAD_START,
Source<NavigationController>(&controller_),
@@ -1456,7 +1456,7 @@
// Send out a notification that we failed a provisional load with an error.
ProvisionalLoadDetails details(
is_main_frame, controller_.IsURLInPageNavigation(validated_url),
- validated_url, std::string(), false, false, frame_id);
+ validated_url, std::string(), false, frame_id);
details.set_error_code(error_code);
NotificationService::current()->Notify(
@@ -2172,7 +2172,7 @@
// event.
bool is_main_frame = did_navigate ? details.is_main_frame : false;
ProvisionalLoadDetails load_details(
- is_main_frame, details.is_in_page, params.url, std::string(), false,
+ is_main_frame, details.is_in_page, params.url, std::string(),
false, params.frame_id);
load_details.set_transition_type(params.transition);
// Whether or not a page transition was triggered by going backward or
« no previous file with comments | « content/browser/tab_contents/provisional_load_details.cc ('k') | webkit/glue/resource_loader_bridge.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698