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

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

Issue 1545973002: Remove the is_loading_ field from WebContentsImpl (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase + addressed Nasko's nits 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 898 matching lines...) Expand 10 before | Expand all | Expand 10 after
909 909
910 // Notifies the browser that a document has been loaded. 910 // Notifies the browser that a document has been loaded.
911 IPC_MESSAGE_ROUTED0(FrameHostMsg_DidFinishDocumentLoad) 911 IPC_MESSAGE_ROUTED0(FrameHostMsg_DidFinishDocumentLoad)
912 912
913 IPC_MESSAGE_ROUTED4(FrameHostMsg_DidFailLoadWithError, 913 IPC_MESSAGE_ROUTED4(FrameHostMsg_DidFailLoadWithError,
914 GURL /* validated_url */, 914 GURL /* validated_url */,
915 int /* error_code */, 915 int /* error_code */,
916 base::string16 /* error_description */, 916 base::string16 /* error_description */,
917 bool /* was_ignored_by_handler */) 917 bool /* was_ignored_by_handler */)
918 918
919 // Sent when the renderer decides to ignore a navigation.
920 IPC_MESSAGE_ROUTED0(FrameHostMsg_DidDropNavigation)
921
922 // Sent when the renderer starts loading the page. |to_different_document| will 919 // Sent when the renderer starts loading the page. |to_different_document| will
923 // be true unless the load is a fragment navigation, or triggered by 920 // be true unless the load is a fragment navigation, or triggered by
924 // history.pushState/replaceState. 921 // history.pushState/replaceState.
925 IPC_MESSAGE_ROUTED1(FrameHostMsg_DidStartLoading, 922 IPC_MESSAGE_ROUTED1(FrameHostMsg_DidStartLoading,
926 bool /* to_different_document */) 923 bool /* to_different_document */)
927 924
928 // Sent when the renderer is done loading a page. 925 // Sent when the renderer is done loading a page.
929 IPC_MESSAGE_ROUTED0(FrameHostMsg_DidStopLoading) 926 IPC_MESSAGE_ROUTED0(FrameHostMsg_DidStopLoading)
930 927
931 // Notifies the browser that this frame has new session history information. 928 // Notifies the browser that this frame has new session history information.
(...skipping 497 matching lines...) Expand 10 before | Expand all | Expand 10 after
1429 IPC_MESSAGE_ROUTED3(FrameHostMsg_FindMatchRects_Reply, 1426 IPC_MESSAGE_ROUTED3(FrameHostMsg_FindMatchRects_Reply,
1430 int /* version */, 1427 int /* version */,
1431 std::vector<gfx::RectF> /* rects */, 1428 std::vector<gfx::RectF> /* rects */,
1432 gfx::RectF /* active_rect */) 1429 gfx::RectF /* active_rect */)
1433 #endif 1430 #endif
1434 1431
1435 // Adding a new message? Stick to the sort order above: first platform 1432 // Adding a new message? Stick to the sort order above: first platform
1436 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then 1433 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then
1437 // platform independent FrameHostMsg, then ifdefs for platform specific 1434 // platform independent FrameHostMsg, then ifdefs for platform specific
1438 // FrameHostMsg. 1435 // FrameHostMsg.
OLDNEW
« no previous file with comments | « content/browser/web_contents/web_contents_impl_browsertest.cc ('k') | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698