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

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: Addressed nasko@'s comments. Created 3 years, 10 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 22 matching lines...) Expand all
33 #include "content/public/common/context_menu_params.h" 33 #include "content/public/common/context_menu_params.h"
34 #include "content/public/common/file_chooser_file_info.h" 34 #include "content/public/common/file_chooser_file_info.h"
35 #include "content/public/common/file_chooser_params.h" 35 #include "content/public/common/file_chooser_params.h"
36 #include "content/public/common/form_field_data.h" 36 #include "content/public/common/form_field_data.h"
37 #include "content/public/common/frame_navigate_params.h" 37 #include "content/public/common/frame_navigate_params.h"
38 #include "content/public/common/javascript_message_type.h" 38 #include "content/public/common/javascript_message_type.h"
39 #include "content/public/common/page_importance_signals.h" 39 #include "content/public/common/page_importance_signals.h"
40 #include "content/public/common/page_state.h" 40 #include "content/public/common/page_state.h"
41 #include "content/public/common/previews_state.h" 41 #include "content/public/common/previews_state.h"
42 #include "content/public/common/referrer.h" 42 #include "content/public/common/referrer.h"
43 #include "content/public/common/request_context_type.h"
43 #include "content/public/common/resource_response.h" 44 #include "content/public/common/resource_response.h"
44 #include "content/public/common/stop_find_action.h" 45 #include "content/public/common/stop_find_action.h"
45 #include "content/public/common/three_d_api_types.h" 46 #include "content/public/common/three_d_api_types.h"
46 #include "ipc/ipc_message_macros.h" 47 #include "ipc/ipc_message_macros.h"
47 #include "ipc/ipc_platform_file.h" 48 #include "ipc/ipc_platform_file.h"
48 #include "ppapi/features/features.h" 49 #include "ppapi/features/features.h"
49 #include "third_party/WebKit/public/platform/WebFocusType.h" 50 #include "third_party/WebKit/public/platform/WebFocusType.h"
50 #include "third_party/WebKit/public/platform/WebInsecureRequestPolicy.h" 51 #include "third_party/WebKit/public/platform/WebInsecureRequestPolicy.h"
51 #include "third_party/WebKit/public/web/WebFindOptions.h" 52 #include "third_party/WebKit/public/web/WebFindOptions.h"
52 #include "third_party/WebKit/public/web/WebFrameOwnerProperties.h" 53 #include "third_party/WebKit/public/web/WebFrameOwnerProperties.h"
(...skipping 892 matching lines...) Expand 10 before | Expand all | Expand 10 after
945 // ScopedPageLoadDeferrer is on the stack for SwapOut. 946 // ScopedPageLoadDeferrer is on the stack for SwapOut.
946 IPC_MESSAGE_ROUTED0(FrameMsg_SuppressFurtherDialogs) 947 IPC_MESSAGE_ROUTED0(FrameMsg_SuppressFurtherDialogs)
947 948
948 // Tells the frame to consider itself to have received a user gesture (based 949 // Tells the frame to consider itself to have received a user gesture (based
949 // on a user gesture processed in a different process). 950 // on a user gesture processed in a different process).
950 IPC_MESSAGE_ROUTED0(FrameMsg_SetHasReceivedUserGesture) 951 IPC_MESSAGE_ROUTED0(FrameMsg_SetHasReceivedUserGesture)
951 952
952 IPC_MESSAGE_ROUTED1(FrameMsg_RunFileChooserResponse, 953 IPC_MESSAGE_ROUTED1(FrameMsg_RunFileChooserResponse,
953 std::vector<content::FileChooserFileInfo>) 954 std::vector<content::FileChooserFileInfo>)
954 955
956 // Updates the renderer with a list of unique blink::UseCounter::Feature values
957 // representing Blink features used, performed or encountered by the browser
958 // during the current page load happening on the frame.
959 IPC_MESSAGE_ROUTED1(FrameMsg_BlinkFeatureUsageReport,
960 std::set<int>) /* features */
961
962 // Informs the renderer that mixed content was found by the browser. The
963 // included data is used for instance to report to the CSP policy and to log to
964 // the frame console.
965 IPC_MESSAGE_ROUTED5(FrameMsg_MixedContentFound,
966 GURL, /* main_resource_url */
967 GURL, /* mixed_content_url */
968 content::RequestContextType, /* request_context_type */
969 bool, /* was_allowed */
970 bool) /* had_redirect */
971
955 // ----------------------------------------------------------------------------- 972 // -----------------------------------------------------------------------------
956 // Messages sent from the renderer to the browser. 973 // Messages sent from the renderer to the browser.
957 974
958 // Blink and JavaScript error messages to log to the console 975 // Blink and JavaScript error messages to log to the console
959 // or debugger UI. 976 // or debugger UI.
960 IPC_MESSAGE_ROUTED4(FrameHostMsg_DidAddMessageToConsole, 977 IPC_MESSAGE_ROUTED4(FrameHostMsg_DidAddMessageToConsole,
961 int32_t, /* log level */ 978 int32_t, /* log level */
962 base::string16, /* msg */ 979 base::string16, /* msg */
963 int32_t, /* line number */ 980 int32_t, /* line number */
964 base::string16 /* source id */) 981 base::string16 /* source id */)
(...skipping 612 matching lines...) Expand 10 before | Expand all | Expand 10 after
1577 // nearest find result in the sending frame. 1594 // nearest find result in the sending frame.
1578 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply, 1595 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply,
1579 int /* nfr_request_id */, 1596 int /* nfr_request_id */,
1580 float /* distance */) 1597 float /* distance */)
1581 #endif 1598 #endif
1582 1599
1583 // Adding a new message? Stick to the sort order above: first platform 1600 // Adding a new message? Stick to the sort order above: first platform
1584 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then 1601 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then
1585 // platform independent FrameHostMsg, then ifdefs for platform specific 1602 // platform independent FrameHostMsg, then ifdefs for platform specific
1586 // FrameHostMsg. 1603 // FrameHostMsg.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698