summaryrefslogtreecommitdiffstats
path: root/content/browser/tab_contents/tab_contents.cc
diff options
context:
space:
mode:
Diffstat (limited to 'content/browser/tab_contents/tab_contents.cc')
-rw-r--r--content/browser/tab_contents/tab_contents.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/content/browser/tab_contents/tab_contents.cc b/content/browser/tab_contents/tab_contents.cc
index 213697f..0ae8f4a1 100644
--- a/content/browser/tab_contents/tab_contents.cc
+++ b/content/browser/tab_contents/tab_contents.cc
@@ -1362,7 +1362,7 @@ void TabContents::OnDidStartProvisionalLoadForFrame(int64 frame_id,
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 @@ void TabContents::OnDidFailProvisionalLoadWithError(
// 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 @@ void TabContents::DidNavigate(RenderViewHost* rvh,
// 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