mirror of
https://github.com/electron/electron.git
synced 2026-04-10 03:01:51 -04:00
Remove was_ignored_by_handler from frame_messages.h
https://chromium-review.googlesource.com/587701
This commit is contained in:
committed by
Cheng Zhao
parent
91a339b625
commit
8f78bd3307
@@ -811,8 +811,7 @@ void WebContents::DidFinishLoad(content::RenderFrameHost* render_frame_host,
|
||||
void WebContents::DidFailLoad(content::RenderFrameHost* render_frame_host,
|
||||
const GURL& url,
|
||||
int error_code,
|
||||
const base::string16& error_description,
|
||||
bool was_ignored_by_handler) {
|
||||
const base::string16& error_description) {
|
||||
bool is_main_frame = !render_frame_host->GetParent();
|
||||
Emit("did-fail-load", error_code, error_description, url, is_main_frame);
|
||||
}
|
||||
|
||||
@@ -343,8 +343,7 @@ class WebContents : public mate::TrackableObject<WebContents>,
|
||||
void DidFailLoad(content::RenderFrameHost* render_frame_host,
|
||||
const GURL& validated_url,
|
||||
int error_code,
|
||||
const base::string16& error_description,
|
||||
bool was_ignored_by_handler) override;
|
||||
const base::string16& error_description) override;
|
||||
void DidStartLoading() override;
|
||||
void DidStopLoading() override;
|
||||
void DidGetResourceResponseStart(
|
||||
|
||||
Reference in New Issue
Block a user