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

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

Issue 2524763002: make NavigationGesture part of public content API and use it outside content (Closed)
Patch Set: Created 4 years 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
« no previous file with comments | « content/common/BUILD.gn ('k') | content/common/navigation_gesture.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
11 #include <map> 11 #include <map>
12 #include <set> 12 #include <set>
13 #include <string> 13 #include <string>
14 #include <vector> 14 #include <vector>
15 15
16 #include "build/build_config.h" 16 #include "build/build_config.h"
17 #include "cc/surfaces/surface_id.h" 17 #include "cc/surfaces/surface_id.h"
18 #include "cc/surfaces/surface_sequence.h" 18 #include "cc/surfaces/surface_sequence.h"
19 #include "content/common/content_export.h" 19 #include "content/common/content_export.h"
20 #include "content/common/content_param_traits.h" 20 #include "content/common/content_param_traits.h"
21 #include "content/common/content_security_policy_header.h" 21 #include "content/common/content_security_policy_header.h"
22 #include "content/common/frame_message_enums.h" 22 #include "content/common/frame_message_enums.h"
23 #include "content/common/frame_owner_properties.h" 23 #include "content/common/frame_owner_properties.h"
24 #include "content/common/frame_replication_state.h" 24 #include "content/common/frame_replication_state.h"
25 #include "content/common/navigation_gesture.h"
26 #include "content/common/navigation_params.h" 25 #include "content/common/navigation_params.h"
27 #include "content/common/savable_subframe.h" 26 #include "content/common/savable_subframe.h"
28 #include "content/public/common/color_suggestion.h" 27 #include "content/public/common/color_suggestion.h"
29 #include "content/public/common/common_param_traits.h" 28 #include "content/public/common/common_param_traits.h"
30 #include "content/public/common/console_message_level.h" 29 #include "content/public/common/console_message_level.h"
31 #include "content/public/common/context_menu_params.h" 30 #include "content/public/common/context_menu_params.h"
32 #include "content/public/common/file_chooser_file_info.h" 31 #include "content/public/common/file_chooser_file_info.h"
33 #include "content/public/common/file_chooser_params.h" 32 #include "content/public/common/file_chooser_params.h"
34 #include "content/public/common/form_field_data.h" 33 #include "content/public/common/form_field_data.h"
35 #include "content/public/common/frame_navigate_params.h" 34 #include "content/public/common/frame_navigate_params.h"
36 #include "content/public/common/javascript_message_type.h" 35 #include "content/public/common/javascript_message_type.h"
36 #include "content/public/common/navigation_gesture.h"
37 #include "content/public/common/page_importance_signals.h" 37 #include "content/public/common/page_importance_signals.h"
38 #include "content/public/common/page_state.h" 38 #include "content/public/common/page_state.h"
39 #include "content/public/common/resource_response.h" 39 #include "content/public/common/resource_response.h"
40 #include "content/public/common/stop_find_action.h" 40 #include "content/public/common/stop_find_action.h"
41 #include "content/public/common/three_d_api_types.h" 41 #include "content/public/common/three_d_api_types.h"
42 #include "content/public/common/transition_element.h" 42 #include "content/public/common/transition_element.h"
43 #include "ipc/ipc_message_macros.h" 43 #include "ipc/ipc_message_macros.h"
44 #include "ipc/ipc_platform_file.h" 44 #include "ipc/ipc_platform_file.h"
45 #include "ppapi/features/features.h" 45 #include "ppapi/features/features.h"
46 #include "third_party/WebKit/public/platform/WebFocusType.h" 46 #include "third_party/WebKit/public/platform/WebFocusType.h"
(...skipping 1486 matching lines...) Expand 10 before | Expand all | Expand 10 after
1533 // nearest find result in the sending frame. 1533 // nearest find result in the sending frame.
1534 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply, 1534 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply,
1535 int /* nfr_request_id */, 1535 int /* nfr_request_id */,
1536 float /* distance */) 1536 float /* distance */)
1537 #endif 1537 #endif
1538 1538
1539 // Adding a new message? Stick to the sort order above: first platform 1539 // Adding a new message? Stick to the sort order above: first platform
1540 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then 1540 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then
1541 // platform independent FrameHostMsg, then ifdefs for platform specific 1541 // platform independent FrameHostMsg, then ifdefs for platform specific
1542 // FrameHostMsg. 1542 // FrameHostMsg.
OLDNEW
« no previous file with comments | « content/common/BUILD.gn ('k') | content/common/navigation_gesture.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698