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

Unified Diff: content/common/view_messages.h

Issue 118553006: Move DidFailProvisionalLoad handling from RenderView(Host) to RenderFrame(Host). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase on ToT. Created 6 years, 11 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/common/frame_messages.h ('k') | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/view_messages.h
diff --git a/content/common/view_messages.h b/content/common/view_messages.h
index 561928f2b7a6874d5522e865c42aea9c9d2edc14..ea6e7ac1a4f29654543f1ce9abc228982f6d5f5a 100644
--- a/content/common/view_messages.h
+++ b/content/common/view_messages.h
@@ -415,25 +415,6 @@ IPC_STRUCT_BEGIN(ViewHostMsg_DateTimeDialogValue_Params)
IPC_STRUCT_MEMBER(std::vector<content::DateTimeSuggestion>, suggestions)
IPC_STRUCT_END()
-IPC_STRUCT_BEGIN(ViewHostMsg_DidFailProvisionalLoadWithError_Params)
- // The frame ID for the failure report.
- IPC_STRUCT_MEMBER(int64, frame_id)
- // The WebFrame's uniqueName().
- IPC_STRUCT_MEMBER(base::string16, frame_unique_name)
- // True if this is the top-most frame.
- IPC_STRUCT_MEMBER(bool, is_main_frame)
- // Error code as reported in the DidFailProvisionalLoad callback.
- IPC_STRUCT_MEMBER(int, error_code)
- // An error message generated from the error_code. This can be an empty
- // string if we were unable to find a meaningful description.
- IPC_STRUCT_MEMBER(base::string16, error_description)
- // The URL that the error is reported for.
- IPC_STRUCT_MEMBER(GURL, url)
- // True if the failure is the result of navigating to a POST again
- // and we're going to show the POST interstitial.
- IPC_STRUCT_MEMBER(bool, showing_repost_interstitial)
-IPC_STRUCT_END()
-
// Parameters structure for ViewHostMsg_FrameNavigate, which has too many data
// parameters to be reasonably put in a predefined IPC message.
IPC_STRUCT_BEGIN_WITH_PARENT(ViewHostMsg_FrameNavigate_Params,
@@ -1654,10 +1635,6 @@ IPC_MESSAGE_ROUTED5(ViewHostMsg_DidFailLoadWithError,
int /* error_code */,
base::string16 /* error_description */)
-// Sent when the renderer fails a provisional load with an error.
-IPC_MESSAGE_ROUTED1(ViewHostMsg_DidFailProvisionalLoadWithError,
- ViewHostMsg_DidFailProvisionalLoadWithError_Params)
-
// Tells the render view that a ViewHostMsg_PaintAtSize message was
// processed, and the DIB is ready for use. |tag| has the same value that
// the tag sent along with ViewMsg_PaintAtSize.
« no previous file with comments | « content/common/frame_messages.h ('k') | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698