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

Side by Side Diff: chrome/common/render_messages_internal.h

Issue 3561008: Implement the frame id required for the web navigation api. (Closed)
Patch Set: updates Created 10 years, 2 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
« no previous file with comments | « chrome/browser/tab_contents/tab_contents.cc ('k') | chrome/common/render_messages_params.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 // This header is meant to be included in multiple passes, hence no traditional 5 // This header is meant to be included in multiple passes, hence no traditional
6 // header guard. 6 // header guard.
7 // See ipc_message_macros.h for explanation of the macros and passes. 7 // See ipc_message_macros.h for explanation of the macros and passes.
8 8
9 #include <map> 9 #include <map>
10 #include <string> 10 #include <string>
(...skipping 1216 matching lines...) Expand 10 before | Expand all | Expand 10 after
1227 std::string /* security info */) 1227 std::string /* security info */)
1228 1228
1229 // Sent when the renderer displays insecure content in a secure page. 1229 // Sent when the renderer displays insecure content in a secure page.
1230 IPC_MESSAGE_ROUTED0(ViewHostMsg_DidDisplayInsecureContent) 1230 IPC_MESSAGE_ROUTED0(ViewHostMsg_DidDisplayInsecureContent)
1231 1231
1232 // Sent when the renderer runs insecure content in a secure origin. 1232 // Sent when the renderer runs insecure content in a secure origin.
1233 IPC_MESSAGE_ROUTED1(ViewHostMsg_DidRunInsecureContent, 1233 IPC_MESSAGE_ROUTED1(ViewHostMsg_DidRunInsecureContent,
1234 std::string /* security_origin */) 1234 std::string /* security_origin */)
1235 1235
1236 // Sent when the renderer starts a provisional load for a frame. 1236 // Sent when the renderer starts a provisional load for a frame.
1237 IPC_MESSAGE_ROUTED2(ViewHostMsg_DidStartProvisionalLoadForFrame, 1237 IPC_MESSAGE_ROUTED3(ViewHostMsg_DidStartProvisionalLoadForFrame,
1238 long long /* frame_id */,
1238 bool /* true if it is the main frame */, 1239 bool /* true if it is the main frame */,
1239 GURL /* url */) 1240 GURL /* url */)
1240 1241
1241 // Sent when the renderer fails a provisional load with an error. 1242 // Sent when the renderer fails a provisional load with an error.
1242 IPC_MESSAGE_ROUTED4(ViewHostMsg_DidFailProvisionalLoadWithError, 1243 IPC_MESSAGE_ROUTED5(ViewHostMsg_DidFailProvisionalLoadWithError,
1244 long long /* frame_id */,
1243 bool /* true if it is the main frame */, 1245 bool /* true if it is the main frame */,
1244 int /* error_code */, 1246 int /* error_code */,
1245 GURL /* url */, 1247 GURL /* url */,
1246 bool /* true if the failure is the result of 1248 bool /* true if the failure is the result of
1247 navigating to a POST again and we're going to 1249 navigating to a POST again and we're going to
1248 show the POST interstitial */ ) 1250 show the POST interstitial */)
1249 1251
1250 // Tells the render view that a ViewHostMsg_PaintAtSize message was 1252 // Tells the render view that a ViewHostMsg_PaintAtSize message was
1251 // processed, and the DIB is ready for use. |tag| has the same value that 1253 // processed, and the DIB is ready for use. |tag| has the same value that
1252 // the tag sent along with ViewMsg_PaintAtSize. 1254 // the tag sent along with ViewMsg_PaintAtSize.
1253 IPC_MESSAGE_ROUTED2(ViewHostMsg_PaintAtSize_ACK, 1255 IPC_MESSAGE_ROUTED2(ViewHostMsg_PaintAtSize_ACK,
1254 int /* tag */, 1256 int /* tag */,
1255 gfx::Size /* size */) 1257 gfx::Size /* size */)
1256 1258
1257 // Sent to update part of the view. In response to this message, the host 1259 // Sent to update part of the view. In response to this message, the host
1258 // generates a ViewMsg_UpdateRect_ACK message. 1260 // generates a ViewMsg_UpdateRect_ACK message.
(...skipping 1674 matching lines...) Expand 10 before | Expand all | Expand 10 after
2933 SkBitmap /* thumbnail */) 2935 SkBitmap /* thumbnail */)
2934 2936
2935 // Response from ViewMsg_ScriptEvalRequest. The ID is the parameter supplied 2937 // Response from ViewMsg_ScriptEvalRequest. The ID is the parameter supplied
2936 // to ViewMsg_ScriptEvalRequest. The result is true if the script evaluated 2938 // to ViewMsg_ScriptEvalRequest. The result is true if the script evaluated
2937 // to the boolean result true, false otherwise. 2939 // to the boolean result true, false otherwise.
2938 IPC_MESSAGE_ROUTED2(ViewHostMsg_ScriptEvalResponse, 2940 IPC_MESSAGE_ROUTED2(ViewHostMsg_ScriptEvalResponse,
2939 int /* id */, 2941 int /* id */,
2940 bool /* result */) 2942 bool /* result */)
2941 2943
2942 IPC_END_MESSAGES(ViewHost) 2944 IPC_END_MESSAGES(ViewHost)
OLDNEW
« no previous file with comments | « chrome/browser/tab_contents/tab_contents.cc ('k') | chrome/common/render_messages_params.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698