Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 Loading... | |
| 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" |
| 50 #include "third_party/WebKit/public/platform/WebMixedContent.h" | |
|
jam
2017/01/09 21:15:46
nit: shouldn't be needed because the header that d
carlosk
2017/01/10 19:13:11
Done.
| |
| 49 #include "third_party/WebKit/public/web/WebFindOptions.h" | 51 #include "third_party/WebKit/public/web/WebFindOptions.h" |
| 50 #include "third_party/WebKit/public/web/WebFrameOwnerProperties.h" | 52 #include "third_party/WebKit/public/web/WebFrameOwnerProperties.h" |
| 51 #include "third_party/WebKit/public/web/WebFrameSerializerCacheControlPolicy.h" | 53 #include "third_party/WebKit/public/web/WebFrameSerializerCacheControlPolicy.h" |
| 52 #include "third_party/WebKit/public/web/WebTreeScopeType.h" | 54 #include "third_party/WebKit/public/web/WebTreeScopeType.h" |
| 53 #include "ui/gfx/geometry/rect.h" | 55 #include "ui/gfx/geometry/rect.h" |
| 54 #include "ui/gfx/geometry/rect_f.h" | 56 #include "ui/gfx/geometry/rect_f.h" |
| 55 #include "ui/gfx/ipc/gfx_param_traits.h" | 57 #include "ui/gfx/ipc/gfx_param_traits.h" |
| 56 #include "ui/gfx/ipc/skia/gfx_skia_param_traits.h" | 58 #include "ui/gfx/ipc/skia/gfx_skia_param_traits.h" |
| 57 #include "ui/gfx/range/range.h" | 59 #include "ui/gfx/range/range.h" |
| 58 #include "url/gurl.h" | 60 #include "url/gurl.h" |
| (...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 340 IPC_STRUCT_TRAITS_MEMBER(method) | 342 IPC_STRUCT_TRAITS_MEMBER(method) |
| 341 IPC_STRUCT_TRAITS_MEMBER(post_data) | 343 IPC_STRUCT_TRAITS_MEMBER(post_data) |
| 342 IPC_STRUCT_TRAITS_END() | 344 IPC_STRUCT_TRAITS_END() |
| 343 | 345 |
| 344 IPC_STRUCT_TRAITS_BEGIN(content::BeginNavigationParams) | 346 IPC_STRUCT_TRAITS_BEGIN(content::BeginNavigationParams) |
| 345 IPC_STRUCT_TRAITS_MEMBER(headers) | 347 IPC_STRUCT_TRAITS_MEMBER(headers) |
| 346 IPC_STRUCT_TRAITS_MEMBER(load_flags) | 348 IPC_STRUCT_TRAITS_MEMBER(load_flags) |
| 347 IPC_STRUCT_TRAITS_MEMBER(has_user_gesture) | 349 IPC_STRUCT_TRAITS_MEMBER(has_user_gesture) |
| 348 IPC_STRUCT_TRAITS_MEMBER(skip_service_worker) | 350 IPC_STRUCT_TRAITS_MEMBER(skip_service_worker) |
| 349 IPC_STRUCT_TRAITS_MEMBER(request_context_type) | 351 IPC_STRUCT_TRAITS_MEMBER(request_context_type) |
| 352 IPC_STRUCT_TRAITS_MEMBER(mixed_content_context_type) | |
| 350 IPC_STRUCT_TRAITS_MEMBER(searchable_form_url) | 353 IPC_STRUCT_TRAITS_MEMBER(searchable_form_url) |
| 351 IPC_STRUCT_TRAITS_MEMBER(searchable_form_encoding) | 354 IPC_STRUCT_TRAITS_MEMBER(searchable_form_encoding) |
| 352 IPC_STRUCT_TRAITS_MEMBER(initiator_origin) | 355 IPC_STRUCT_TRAITS_MEMBER(initiator_origin) |
| 353 IPC_STRUCT_TRAITS_END() | 356 IPC_STRUCT_TRAITS_END() |
| 354 | 357 |
| 355 IPC_STRUCT_TRAITS_BEGIN(content::StartNavigationParams) | 358 IPC_STRUCT_TRAITS_BEGIN(content::StartNavigationParams) |
| 356 IPC_STRUCT_TRAITS_MEMBER(extra_headers) | 359 IPC_STRUCT_TRAITS_MEMBER(extra_headers) |
| 357 IPC_STRUCT_TRAITS_MEMBER(transferred_request_child_id) | 360 IPC_STRUCT_TRAITS_MEMBER(transferred_request_child_id) |
| 358 IPC_STRUCT_TRAITS_MEMBER(transferred_request_request_id) | 361 IPC_STRUCT_TRAITS_MEMBER(transferred_request_request_id) |
| 359 IPC_STRUCT_TRAITS_END() | 362 IPC_STRUCT_TRAITS_END() |
| (...skipping 565 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 925 // ScopedPageLoadDeferrer is on the stack for SwapOut. | 928 // ScopedPageLoadDeferrer is on the stack for SwapOut. |
| 926 IPC_MESSAGE_ROUTED0(FrameMsg_SuppressFurtherDialogs) | 929 IPC_MESSAGE_ROUTED0(FrameMsg_SuppressFurtherDialogs) |
| 927 | 930 |
| 928 // Tells the frame to consider itself to have received a user gesture (based | 931 // Tells the frame to consider itself to have received a user gesture (based |
| 929 // on a user gesture proceed by a descendant). | 932 // on a user gesture proceed by a descendant). |
| 930 IPC_MESSAGE_ROUTED0(FrameMsg_SetHasReceivedUserGesture) | 933 IPC_MESSAGE_ROUTED0(FrameMsg_SetHasReceivedUserGesture) |
| 931 | 934 |
| 932 IPC_MESSAGE_ROUTED1(FrameMsg_RunFileChooserResponse, | 935 IPC_MESSAGE_ROUTED1(FrameMsg_RunFileChooserResponse, |
| 933 std::vector<content::FileChooserFileInfo>) | 936 std::vector<content::FileChooserFileInfo>) |
| 934 | 937 |
| 938 // Updates the renderer with a list of unique blink::UseCounter::Feature values | |
| 939 // representing Blink features "used" (or "performed") by the browser during the | |
| 940 // current page load happening on the frame. | |
| 941 IPC_MESSAGE_ROUTED1(FrameMsg_BlinkFeatureUsageReport, | |
| 942 std::set<int>) /* features */ | |
| 943 | |
| 944 // Informs the renderer that mixed content was found by the browser. The | |
| 945 // included data is used for instance to report to the CSP policy and to log to | |
| 946 // the frame console. | |
| 947 IPC_MESSAGE_ROUTED5(FrameMsg_MixedContentFoundByTheBrowser, | |
|
jam
2017/01/09 21:15:46
nit: ByTheBrowser is redundant since this is an IP
carlosk
2017/01/10 19:13:11
Done.
| |
| 948 GURL, /* main_resource_url */ | |
| 949 GURL, /* mixed_content_url */ | |
| 950 content::RequestContextType, /* request_context_type */ | |
| 951 bool, /* was_allowed */ | |
| 952 bool) /* had_redirect */ | |
| 953 | |
| 935 // ----------------------------------------------------------------------------- | 954 // ----------------------------------------------------------------------------- |
| 936 // Messages sent from the renderer to the browser. | 955 // Messages sent from the renderer to the browser. |
| 937 | 956 |
| 938 // Blink and JavaScript error messages to log to the console | 957 // Blink and JavaScript error messages to log to the console |
| 939 // or debugger UI. | 958 // or debugger UI. |
| 940 IPC_MESSAGE_ROUTED4(FrameHostMsg_DidAddMessageToConsole, | 959 IPC_MESSAGE_ROUTED4(FrameHostMsg_DidAddMessageToConsole, |
| 941 int32_t, /* log level */ | 960 int32_t, /* log level */ |
| 942 base::string16, /* msg */ | 961 base::string16, /* msg */ |
| 943 int32_t, /* line number */ | 962 int32_t, /* line number */ |
| 944 base::string16 /* source id */) | 963 base::string16 /* source id */) |
| (...skipping 594 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1539 // nearest find result in the sending frame. | 1558 // nearest find result in the sending frame. |
| 1540 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply, | 1559 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply, |
| 1541 int /* nfr_request_id */, | 1560 int /* nfr_request_id */, |
| 1542 float /* distance */) | 1561 float /* distance */) |
| 1543 #endif | 1562 #endif |
| 1544 | 1563 |
| 1545 // Adding a new message? Stick to the sort order above: first platform | 1564 // Adding a new message? Stick to the sort order above: first platform |
| 1546 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then | 1565 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then |
| 1547 // platform independent FrameHostMsg, then ifdefs for platform specific | 1566 // platform independent FrameHostMsg, then ifdefs for platform specific |
| 1548 // FrameHostMsg. | 1567 // FrameHostMsg. |
| OLD | NEW |