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

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

Issue 1905033002: PlzNavigate: Move navigation-level mixed content checks to the browser. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@console-security-message
Patch Set: Address jam@ comments; many minor code and comment updates. Created 3 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
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 20 matching lines...) Expand all
31 #include "content/public/common/console_message_level.h" 31 #include "content/public/common/console_message_level.h"
32 #include "content/public/common/context_menu_params.h" 32 #include "content/public/common/context_menu_params.h"
33 #include "content/public/common/file_chooser_file_info.h" 33 #include "content/public/common/file_chooser_file_info.h"
34 #include "content/public/common/file_chooser_params.h" 34 #include "content/public/common/file_chooser_params.h"
35 #include "content/public/common/form_field_data.h" 35 #include "content/public/common/form_field_data.h"
36 #include "content/public/common/frame_navigate_params.h" 36 #include "content/public/common/frame_navigate_params.h"
37 #include "content/public/common/javascript_message_type.h" 37 #include "content/public/common/javascript_message_type.h"
38 #include "content/public/common/page_importance_signals.h" 38 #include "content/public/common/page_importance_signals.h"
39 #include "content/public/common/page_state.h" 39 #include "content/public/common/page_state.h"
40 #include "content/public/common/referrer.h" 40 #include "content/public/common/referrer.h"
41 #include "content/public/common/request_context_type.h"
41 #include "content/public/common/resource_response.h" 42 #include "content/public/common/resource_response.h"
42 #include "content/public/common/stop_find_action.h" 43 #include "content/public/common/stop_find_action.h"
43 #include "content/public/common/three_d_api_types.h" 44 #include "content/public/common/three_d_api_types.h"
44 #include "ipc/ipc_message_macros.h" 45 #include "ipc/ipc_message_macros.h"
45 #include "ipc/ipc_platform_file.h" 46 #include "ipc/ipc_platform_file.h"
46 #include "ppapi/features/features.h" 47 #include "ppapi/features/features.h"
47 #include "third_party/WebKit/public/platform/WebFocusType.h" 48 #include "third_party/WebKit/public/platform/WebFocusType.h"
48 #include "third_party/WebKit/public/platform/WebInsecureRequestPolicy.h" 49 #include "third_party/WebKit/public/platform/WebInsecureRequestPolicy.h"
49 #include "third_party/WebKit/public/web/WebFindOptions.h" 50 #include "third_party/WebKit/public/web/WebFindOptions.h"
50 #include "third_party/WebKit/public/web/WebFrameOwnerProperties.h" 51 #include "third_party/WebKit/public/web/WebFrameOwnerProperties.h"
(...skipping 875 matching lines...) Expand 10 before | Expand all | Expand 10 after
926 // ScopedPageLoadDeferrer is on the stack for SwapOut. 927 // ScopedPageLoadDeferrer is on the stack for SwapOut.
927 IPC_MESSAGE_ROUTED0(FrameMsg_SuppressFurtherDialogs) 928 IPC_MESSAGE_ROUTED0(FrameMsg_SuppressFurtherDialogs)
928 929
929 // Tells the frame to consider itself to have received a user gesture (based 930 // Tells the frame to consider itself to have received a user gesture (based
930 // on a user gesture proceed by a descendant). 931 // on a user gesture proceed by a descendant).
931 IPC_MESSAGE_ROUTED0(FrameMsg_SetHasReceivedUserGesture) 932 IPC_MESSAGE_ROUTED0(FrameMsg_SetHasReceivedUserGesture)
932 933
933 IPC_MESSAGE_ROUTED1(FrameMsg_RunFileChooserResponse, 934 IPC_MESSAGE_ROUTED1(FrameMsg_RunFileChooserResponse,
934 std::vector<content::FileChooserFileInfo>) 935 std::vector<content::FileChooserFileInfo>)
935 936
937 // Updates the renderer with a list of unique blink::UseCounter::Feature values
938 // representing Blink features used, performed or encountered by the browser
939 // during the current page load happening on the frame.
940 IPC_MESSAGE_ROUTED1(FrameMsg_BlinkFeatureUsageReport,
941 std::set<int>) /* features */
942
943 // Informs the renderer that mixed content was found by the browser. The
944 // included data is used for instance to report to the CSP policy and to log to
945 // the frame console.
946 IPC_MESSAGE_ROUTED5(FrameMsg_MixedContentFound,
947 GURL, /* main_resource_url */
948 GURL, /* mixed_content_url */
949 content::RequestContextType, /* request_context_type */
950 bool, /* was_allowed */
951 bool) /* had_redirect */
952
936 // ----------------------------------------------------------------------------- 953 // -----------------------------------------------------------------------------
937 // Messages sent from the renderer to the browser. 954 // Messages sent from the renderer to the browser.
938 955
939 // Blink and JavaScript error messages to log to the console 956 // Blink and JavaScript error messages to log to the console
940 // or debugger UI. 957 // or debugger UI.
941 IPC_MESSAGE_ROUTED4(FrameHostMsg_DidAddMessageToConsole, 958 IPC_MESSAGE_ROUTED4(FrameHostMsg_DidAddMessageToConsole,
942 int32_t, /* log level */ 959 int32_t, /* log level */
943 base::string16, /* msg */ 960 base::string16, /* msg */
944 int32_t, /* line number */ 961 int32_t, /* line number */
945 base::string16 /* source id */) 962 base::string16 /* source id */)
(...skipping 594 matching lines...) Expand 10 before | Expand all | Expand 10 after
1540 // nearest find result in the sending frame. 1557 // nearest find result in the sending frame.
1541 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply, 1558 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply,
1542 int /* nfr_request_id */, 1559 int /* nfr_request_id */,
1543 float /* distance */) 1560 float /* distance */)
1544 #endif 1561 #endif
1545 1562
1546 // Adding a new message? Stick to the sort order above: first platform 1563 // Adding a new message? Stick to the sort order above: first platform
1547 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then 1564 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then
1548 // platform independent FrameHostMsg, then ifdefs for platform specific 1565 // platform independent FrameHostMsg, then ifdefs for platform specific
1549 // FrameHostMsg. 1566 // FrameHostMsg.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698