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

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

Issue 30323002: [DRAFT] Create RenderFrameHostManager. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 7 years, 1 month 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 | Annotate | Revision Log
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 "content/common/content_export.h" 8 #include "content/common/content_export.h"
9 #include "ipc/ipc_message_macros.h" 9 #include "ipc/ipc_message_macros.h"
10 10
(...skipping 24 matching lines...) Expand all
35 int64 /* parent_frame_id */, 35 int64 /* parent_frame_id */,
36 int64 /* frame_id */) 36 int64 /* frame_id */)
37 37
38 // Sent when the renderer starts a provisional load for a frame. 38 // Sent when the renderer starts a provisional load for a frame.
39 IPC_MESSAGE_ROUTED4(FrameHostMsg_DidStartProvisionalLoadForFrame, 39 IPC_MESSAGE_ROUTED4(FrameHostMsg_DidStartProvisionalLoadForFrame,
40 int64 /* frame_id */, 40 int64 /* frame_id */,
41 int64 /* parent_frame_id */, 41 int64 /* parent_frame_id */,
42 bool /* true if it is the main frame */, 42 bool /* true if it is the main frame */,
43 GURL /* url */) 43 GURL /* url */)
44 44
45 // Indicates that the current renderer has swapped out, after a SwapOut
46 // message.
47 IPC_MESSAGE_ROUTED0(FrameHostMsg_SwapOut_ACK)
48
49 // Instructs the renderer to swap out for a cross-site transition, including
50 // running the unload event handler. Expects a SwapOut_ACK message when
51 // finished.
52 IPC_MESSAGE_ROUTED0(FrameMsg_SwapOut)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698