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

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

Issue 19398004: Use a direct include of the shared_memory header in content/browser/, content/child/, content/commo… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « content/common/sandbox_mac_fontloading_unittest.mm ('k') | no next file » | 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 "base/memory/shared_memory.h"
8 #include "base/process.h" 9 #include "base/process.h"
9 #include "base/shared_memory.h"
10 #include "base/strings/string16.h" 10 #include "base/strings/string16.h"
11 #include "cc/output/begin_frame_args.h" 11 #include "cc/output/begin_frame_args.h"
12 #include "cc/output/compositor_frame.h" 12 #include "cc/output/compositor_frame.h"
13 #include "cc/output/compositor_frame_ack.h" 13 #include "cc/output/compositor_frame_ack.h"
14 #include "content/common/browser_rendering_stats.h" 14 #include "content/common/browser_rendering_stats.h"
15 #include "content/common/content_export.h" 15 #include "content/common/content_export.h"
16 #include "content/common/content_param_traits.h" 16 #include "content/common/content_param_traits.h"
17 #include "content/common/cookie_data.h" 17 #include "content/common/cookie_data.h"
18 #include "content/common/navigation_gesture.h" 18 #include "content/common/navigation_gesture.h"
19 #include "content/common/pepper_renderer_instance_data.h" 19 #include "content/common/pepper_renderer_instance_data.h"
(...skipping 11 matching lines...) Expand all
31 #include "content/public/common/renderer_preferences.h" 31 #include "content/public/common/renderer_preferences.h"
32 #include "content/public/common/stop_find_action.h" 32 #include "content/public/common/stop_find_action.h"
33 #include "content/public/common/three_d_api_types.h" 33 #include "content/public/common/three_d_api_types.h"
34 #include "content/public/common/window_container_type.h" 34 #include "content/public/common/window_container_type.h"
35 #include "ipc/ipc_channel_handle.h" 35 #include "ipc/ipc_channel_handle.h"
36 #include "ipc/ipc_message_macros.h" 36 #include "ipc/ipc_message_macros.h"
37 #include "ipc/ipc_platform_file.h" 37 #include "ipc/ipc_platform_file.h"
38 #include "media/audio/audio_parameters.h" 38 #include "media/audio/audio_parameters.h"
39 #include "media/base/channel_layout.h" 39 #include "media/base/channel_layout.h"
40 #include "media/base/media_log_event.h" 40 #include "media/base/media_log_event.h"
41 #include "third_party/WebKit/public/platform/WebFloatPoint.h"
42 #include "third_party/WebKit/public/platform/WebFloatRect.h"
41 #include "third_party/WebKit/public/web/WebCompositionUnderline.h" 43 #include "third_party/WebKit/public/web/WebCompositionUnderline.h"
42 #include "third_party/WebKit/public/web/WebFindOptions.h" 44 #include "third_party/WebKit/public/web/WebFindOptions.h"
43 #include "third_party/WebKit/public/web/WebMediaPlayerAction.h" 45 #include "third_party/WebKit/public/web/WebMediaPlayerAction.h"
44 #include "third_party/WebKit/public/web/WebPluginAction.h" 46 #include "third_party/WebKit/public/web/WebPluginAction.h"
45 #include "third_party/WebKit/public/web/WebPopupType.h" 47 #include "third_party/WebKit/public/web/WebPopupType.h"
46 #include "third_party/WebKit/public/web/WebScreenInfo.h" 48 #include "third_party/WebKit/public/web/WebScreenInfo.h"
47 #include "third_party/WebKit/public/web/WebTextDirection.h" 49 #include "third_party/WebKit/public/web/WebTextDirection.h"
48 #include "third_party/WebKit/public/platform/WebFloatPoint.h"
49 #include "third_party/WebKit/public/platform/WebFloatRect.h"
50 #include "third_party/skia/include/core/SkBitmap.h" 50 #include "third_party/skia/include/core/SkBitmap.h"
51 #include "ui/base/ime/text_input_mode.h" 51 #include "ui/base/ime/text_input_mode.h"
52 #include "ui/base/ime/text_input_type.h" 52 #include "ui/base/ime/text_input_type.h"
53 #include "ui/base/range/range.h" 53 #include "ui/base/range/range.h"
54 #include "ui/base/ui_base_types.h" 54 #include "ui/base/ui_base_types.h"
55 #include "ui/gfx/point.h" 55 #include "ui/gfx/point.h"
56 #include "ui/gfx/rect.h" 56 #include "ui/gfx/rect.h"
57 #include "ui/gfx/rect_f.h" 57 #include "ui/gfx/rect_f.h"
58 #include "ui/gfx/vector2d.h" 58 #include "ui/gfx/vector2d.h"
59 #include "ui/gfx/vector2d_f.h" 59 #include "ui/gfx/vector2d_f.h"
(...skipping 2274 matching lines...) Expand 10 before | Expand all | Expand 10 after
2334 // synchronously (see crbug.com/120597). This IPC message sends the character 2334 // synchronously (see crbug.com/120597). This IPC message sends the character
2335 // bounds after every composition change to always have correct bound info. 2335 // bounds after every composition change to always have correct bound info.
2336 IPC_MESSAGE_ROUTED2(ViewHostMsg_ImeCompositionRangeChanged, 2336 IPC_MESSAGE_ROUTED2(ViewHostMsg_ImeCompositionRangeChanged,
2337 ui::Range /* composition range */, 2337 ui::Range /* composition range */,
2338 std::vector<gfx::Rect> /* character bounds */) 2338 std::vector<gfx::Rect> /* character bounds */)
2339 #endif 2339 #endif
2340 2340
2341 // Adding a new message? Stick to the sort order above: first platform 2341 // Adding a new message? Stick to the sort order above: first platform
2342 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform 2342 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform
2343 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. 2343 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg.
OLDNEW
« no previous file with comments | « content/common/sandbox_mac_fontloading_unittest.mm ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698