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

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

Issue 6272003: Add another didRunInsecureContent method. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 #include <map> 5 #include <map>
6 #include <set> 6 #include <set>
7 #include <string> 7 #include <string>
8 #include <vector> 8 #include <vector>
9 9
10 #include "build/build_config.h" 10 #include "build/build_config.h"
(...skipping 1218 matching lines...) Expand 10 before | Expand all | Expand 10 after
1229 IPC_MESSAGE_ROUTED4(ViewHostMsg_DidLoadResourceFromMemoryCache, 1229 IPC_MESSAGE_ROUTED4(ViewHostMsg_DidLoadResourceFromMemoryCache,
1230 GURL /* url */, 1230 GURL /* url */,
1231 std::string /* frame_origin */, 1231 std::string /* frame_origin */,
1232 std::string /* main_frame_origin */, 1232 std::string /* main_frame_origin */,
1233 std::string /* security info */) 1233 std::string /* security info */)
1234 1234
1235 // Sent when the renderer displays insecure content in a secure page. 1235 // Sent when the renderer displays insecure content in a secure page.
1236 IPC_MESSAGE_ROUTED0(ViewHostMsg_DidDisplayInsecureContent) 1236 IPC_MESSAGE_ROUTED0(ViewHostMsg_DidDisplayInsecureContent)
1237 1237
1238 // Sent when the renderer runs insecure content in a secure origin. 1238 // Sent when the renderer runs insecure content in a secure origin.
1239 IPC_MESSAGE_ROUTED1(ViewHostMsg_DidRunInsecureContent, 1239 IPC_MESSAGE_ROUTED2(ViewHostMsg_DidRunInsecureContent,
1240 std::string /* security_origin */) 1240 std::string /* security_origin */,
1241 std::string /* target URL */);
1241 1242
1242 // Sent when the renderer starts a provisional load for a frame. 1243 // Sent when the renderer starts a provisional load for a frame.
1243 IPC_MESSAGE_ROUTED3(ViewHostMsg_DidStartProvisionalLoadForFrame, 1244 IPC_MESSAGE_ROUTED3(ViewHostMsg_DidStartProvisionalLoadForFrame,
1244 int64 /* frame_id */, 1245 int64 /* frame_id */,
1245 bool /* true if it is the main frame */, 1246 bool /* true if it is the main frame */,
1246 GURL /* url */) 1247 GURL /* url */)
1247 1248
1248 // Sent when the renderer fails a provisional load with an error. 1249 // Sent when the renderer fails a provisional load with an error.
1249 IPC_MESSAGE_ROUTED5(ViewHostMsg_DidFailProvisionalLoadWithError, 1250 IPC_MESSAGE_ROUTED5(ViewHostMsg_DidFailProvisionalLoadWithError,
1250 int64 /* frame_id */, 1251 int64 /* frame_id */,
(...skipping 1367 matching lines...) Expand 10 before | Expand all | Expand 10 after
2618 int /* request_id */, 2619 int /* request_id */,
2619 PP_Flash_NetAddress /* addr */) 2620 PP_Flash_NetAddress /* addr */)
2620 2621
2621 // JavaScript related messages ----------------------------------------------- 2622 // JavaScript related messages -----------------------------------------------
2622 2623
2623 // Notify the JavaScript engine in the render to change its parameters 2624 // Notify the JavaScript engine in the render to change its parameters
2624 // while performing stress testing. 2625 // while performing stress testing.
2625 IPC_MESSAGE_ROUTED2(ViewMsg_JavaScriptStressTestControl, 2626 IPC_MESSAGE_ROUTED2(ViewMsg_JavaScriptStressTestControl,
2626 int /* cmd */, 2627 int /* cmd */,
2627 int /* param */) 2628 int /* param */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698