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

Side by Side Diff: content/common/frame_messages.h

Issue 1693353002: Reland #2 Remove the is_loading_ field from WebContentsImpl (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed nits + rebase Created 4 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 unified diff | Download patch
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 // IPC messages for interacting with frames. 5 // IPC messages for interacting with frames.
6 // Multiply-included message file, hence no include guard. 6 // Multiply-included message file, hence no include guard.
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 901 matching lines...) Expand 10 before | Expand all | Expand 10 after
912 912
913 // Notifies the browser that a document has been loaded. 913 // Notifies the browser that a document has been loaded.
914 IPC_MESSAGE_ROUTED0(FrameHostMsg_DidFinishDocumentLoad) 914 IPC_MESSAGE_ROUTED0(FrameHostMsg_DidFinishDocumentLoad)
915 915
916 IPC_MESSAGE_ROUTED4(FrameHostMsg_DidFailLoadWithError, 916 IPC_MESSAGE_ROUTED4(FrameHostMsg_DidFailLoadWithError,
917 GURL /* validated_url */, 917 GURL /* validated_url */,
918 int /* error_code */, 918 int /* error_code */,
919 base::string16 /* error_description */, 919 base::string16 /* error_description */,
920 bool /* was_ignored_by_handler */) 920 bool /* was_ignored_by_handler */)
921 921
922 // Sent when the renderer decides to ignore a navigation.
923 IPC_MESSAGE_ROUTED0(FrameHostMsg_DidDropNavigation)
924
925 // Sent when the renderer starts loading the page. |to_different_document| will 922 // Sent when the renderer starts loading the page. |to_different_document| will
926 // be true unless the load is a fragment navigation, or triggered by 923 // be true unless the load is a fragment navigation, or triggered by
927 // history.pushState/replaceState. 924 // history.pushState/replaceState.
928 IPC_MESSAGE_ROUTED1(FrameHostMsg_DidStartLoading, 925 IPC_MESSAGE_ROUTED1(FrameHostMsg_DidStartLoading,
929 bool /* to_different_document */) 926 bool /* to_different_document */)
930 927
931 // Sent when the renderer is done loading a page. 928 // Sent when the renderer is done loading a page.
932 IPC_MESSAGE_ROUTED0(FrameHostMsg_DidStopLoading) 929 IPC_MESSAGE_ROUTED0(FrameHostMsg_DidStopLoading)
933 930
934 // Notifies the browser that this frame has new session history information. 931 // Notifies the browser that this frame has new session history information.
(...skipping 497 matching lines...) Expand 10 before | Expand all | Expand 10 after
1432 IPC_MESSAGE_ROUTED3(FrameHostMsg_FindMatchRects_Reply, 1429 IPC_MESSAGE_ROUTED3(FrameHostMsg_FindMatchRects_Reply,
1433 int /* version */, 1430 int /* version */,
1434 std::vector<gfx::RectF> /* rects */, 1431 std::vector<gfx::RectF> /* rects */,
1435 gfx::RectF /* active_rect */) 1432 gfx::RectF /* active_rect */)
1436 #endif 1433 #endif
1437 1434
1438 // Adding a new message? Stick to the sort order above: first platform 1435 // Adding a new message? Stick to the sort order above: first platform
1439 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then 1436 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then
1440 // platform independent FrameHostMsg, then ifdefs for platform specific 1437 // platform independent FrameHostMsg, then ifdefs for platform specific
1441 // FrameHostMsg. 1438 // FrameHostMsg.
OLDNEW
« no previous file with comments | « content/browser/web_contents/web_contents_impl_browsertest.cc ('k') | content/renderer/history_controller.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698