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

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

Issue 2524763002: make NavigationGesture part of public content API and use it outside content (Closed)
Patch Set: Created 4 years, 1 month 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/navigation_params.h ('k') | content/public/browser/navigation_handle.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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 page rendering. 5 // IPC messages for page rendering.
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 "base/memory/shared_memory.h" 11 #include "base/memory/shared_memory.h"
12 #include "base/process/process.h" 12 #include "base/process/process.h"
13 #include "base/strings/string16.h" 13 #include "base/strings/string16.h"
14 #include "build/build_config.h" 14 #include "build/build_config.h"
15 #include "cc/ipc/cc_param_traits.h" 15 #include "cc/ipc/cc_param_traits.h"
16 #include "cc/output/begin_frame_args.h" 16 #include "cc/output/begin_frame_args.h"
17 #include "cc/output/compositor_frame.h" 17 #include "cc/output/compositor_frame.h"
18 #include "cc/resources/shared_bitmap.h" 18 #include "cc/resources/shared_bitmap.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/date_time_suggestion.h" 21 #include "content/common/date_time_suggestion.h"
22 #include "content/common/frame_replication_state.h" 22 #include "content/common/frame_replication_state.h"
23 #include "content/common/navigation_gesture.h"
24 #include "content/common/resize_params.h" 23 #include "content/common/resize_params.h"
25 #include "content/common/text_input_state.h" 24 #include "content/common/text_input_state.h"
26 #include "content/common/view_message_enums.h" 25 #include "content/common/view_message_enums.h"
27 #include "content/public/common/common_param_traits.h" 26 #include "content/public/common/common_param_traits.h"
28 #include "content/public/common/favicon_url.h" 27 #include "content/public/common/favicon_url.h"
29 #include "content/public/common/menu_item.h" 28 #include "content/public/common/menu_item.h"
29 #include "content/public/common/navigation_gesture.h"
30 #include "content/public/common/page_state.h" 30 #include "content/public/common/page_state.h"
31 #include "content/public/common/page_zoom.h" 31 #include "content/public/common/page_zoom.h"
32 #include "content/public/common/referrer.h" 32 #include "content/public/common/referrer.h"
33 #include "content/public/common/renderer_preferences.h" 33 #include "content/public/common/renderer_preferences.h"
34 #include "content/public/common/screen_info.h" 34 #include "content/public/common/screen_info.h"
35 #include "content/public/common/three_d_api_types.h" 35 #include "content/public/common/three_d_api_types.h"
36 #include "content/public/common/window_container_type.h" 36 #include "content/public/common/window_container_type.h"
37 #include "ipc/ipc_channel_handle.h" 37 #include "ipc/ipc_channel_handle.h"
38 #include "ipc/ipc_message_macros.h" 38 #include "ipc/ipc_message_macros.h"
39 #include "media/base/audio_parameters.h" 39 #include "media/base/audio_parameters.h"
(...skipping 885 matching lines...) Expand 10 before | Expand all | Expand 10 after
925 int /* y */) 925 int /* y */)
926 926
927 #elif defined(OS_MACOSX) 927 #elif defined(OS_MACOSX)
928 // Receives content of a web page as plain text. 928 // Receives content of a web page as plain text.
929 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string) 929 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string)
930 #endif 930 #endif
931 931
932 // Adding a new message? Stick to the sort order above: first platform 932 // Adding a new message? Stick to the sort order above: first platform
933 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform 933 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform
934 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. 934 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg.
OLDNEW
« no previous file with comments | « content/common/navigation_params.h ('k') | content/public/browser/navigation_handle.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698