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

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: Now using shared scheme collections from url_util.h. 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 21 matching lines...) Expand all
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/previews_state.h" 40 #include "content/public/common/previews_state.h"
41 #include "content/public/common/referrer.h" 41 #include "content/public/common/referrer.h"
42 #include "content/public/common/request_context_type.h"
42 #include "content/public/common/resource_response.h" 43 #include "content/public/common/resource_response.h"
43 #include "content/public/common/stop_find_action.h" 44 #include "content/public/common/stop_find_action.h"
44 #include "content/public/common/three_d_api_types.h" 45 #include "content/public/common/three_d_api_types.h"
45 #include "ipc/ipc_message_macros.h" 46 #include "ipc/ipc_message_macros.h"
46 #include "ipc/ipc_platform_file.h" 47 #include "ipc/ipc_platform_file.h"
47 #include "ppapi/features/features.h" 48 #include "ppapi/features/features.h"
48 #include "third_party/WebKit/public/platform/WebFocusType.h" 49 #include "third_party/WebKit/public/platform/WebFocusType.h"
49 #include "third_party/WebKit/public/platform/WebInsecureRequestPolicy.h" 50 #include "third_party/WebKit/public/platform/WebInsecureRequestPolicy.h"
50 #include "third_party/WebKit/public/web/WebFindOptions.h" 51 #include "third_party/WebKit/public/web/WebFindOptions.h"
51 #include "third_party/WebKit/public/web/WebFrameOwnerProperties.h" 52 #include "third_party/WebKit/public/web/WebFrameOwnerProperties.h"
(...skipping 883 matching lines...) Expand 10 before | Expand all | Expand 10 after
935 // ScopedPageLoadDeferrer is on the stack for SwapOut. 936 // ScopedPageLoadDeferrer is on the stack for SwapOut.
936 IPC_MESSAGE_ROUTED0(FrameMsg_SuppressFurtherDialogs) 937 IPC_MESSAGE_ROUTED0(FrameMsg_SuppressFurtherDialogs)
937 938
938 // Tells the frame to consider itself to have received a user gesture (based 939 // Tells the frame to consider itself to have received a user gesture (based
939 // on a user gesture processed in a different process). 940 // on a user gesture processed in a different process).
940 IPC_MESSAGE_ROUTED0(FrameMsg_SetHasReceivedUserGesture) 941 IPC_MESSAGE_ROUTED0(FrameMsg_SetHasReceivedUserGesture)
941 942
942 IPC_MESSAGE_ROUTED1(FrameMsg_RunFileChooserResponse, 943 IPC_MESSAGE_ROUTED1(FrameMsg_RunFileChooserResponse,
943 std::vector<content::FileChooserFileInfo>) 944 std::vector<content::FileChooserFileInfo>)
944 945
946 // Updates the renderer with a list of unique blink::UseCounter::Feature values
947 // representing Blink features used, performed or encountered by the browser
948 // during the current page load happening on the frame.
949 IPC_MESSAGE_ROUTED1(FrameMsg_BlinkFeatureUsageReport,
950 std::set<int>) /* features */
951
952 // Informs the renderer that mixed content was found by the browser. The
953 // included data is used for instance to report to the CSP policy and to log to
954 // the frame console.
955 IPC_MESSAGE_ROUTED5(FrameMsg_MixedContentFound,
956 GURL, /* main_resource_url */
957 GURL, /* mixed_content_url */
958 content::RequestContextType, /* request_context_type */
959 bool, /* was_allowed */
960 bool) /* had_redirect */
961
945 // ----------------------------------------------------------------------------- 962 // -----------------------------------------------------------------------------
946 // Messages sent from the renderer to the browser. 963 // Messages sent from the renderer to the browser.
947 964
948 // Blink and JavaScript error messages to log to the console 965 // Blink and JavaScript error messages to log to the console
949 // or debugger UI. 966 // or debugger UI.
950 IPC_MESSAGE_ROUTED4(FrameHostMsg_DidAddMessageToConsole, 967 IPC_MESSAGE_ROUTED4(FrameHostMsg_DidAddMessageToConsole,
951 int32_t, /* log level */ 968 int32_t, /* log level */
952 base::string16, /* msg */ 969 base::string16, /* msg */
953 int32_t, /* line number */ 970 int32_t, /* line number */
954 base::string16 /* source id */) 971 base::string16 /* source id */)
(...skipping 599 matching lines...) Expand 10 before | Expand all | Expand 10 after
1554 // nearest find result in the sending frame. 1571 // nearest find result in the sending frame.
1555 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply, 1572 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply,
1556 int /* nfr_request_id */, 1573 int /* nfr_request_id */,
1557 float /* distance */) 1574 float /* distance */)
1558 #endif 1575 #endif
1559 1576
1560 // Adding a new message? Stick to the sort order above: first platform 1577 // Adding a new message? Stick to the sort order above: first platform
1561 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then 1578 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then
1562 // platform independent FrameHostMsg, then ifdefs for platform specific 1579 // platform independent FrameHostMsg, then ifdefs for platform specific
1563 // FrameHostMsg. 1580 // FrameHostMsg.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698