OLD | NEW |
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/process.h" | 8 #include "base/process.h" |
9 #include "base/shared_memory.h" | 9 #include "base/shared_memory.h" |
10 #include "base/string16.h" | 10 #include "base/string16.h" |
(...skipping 17 matching lines...) Expand all Loading... |
28 #include "content/public/common/renderer_preferences.h" | 28 #include "content/public/common/renderer_preferences.h" |
29 #include "content/public/common/stop_find_action.h" | 29 #include "content/public/common/stop_find_action.h" |
30 #include "content/public/common/three_d_api_types.h" | 30 #include "content/public/common/three_d_api_types.h" |
31 #include "content/public/common/window_container_type.h" | 31 #include "content/public/common/window_container_type.h" |
32 #include "ipc/ipc_channel_handle.h" | 32 #include "ipc/ipc_channel_handle.h" |
33 #include "ipc/ipc_message_macros.h" | 33 #include "ipc/ipc_message_macros.h" |
34 #include "ipc/ipc_platform_file.h" | 34 #include "ipc/ipc_platform_file.h" |
35 #include "media/audio/audio_parameters.h" | 35 #include "media/audio/audio_parameters.h" |
36 #include "media/base/channel_layout.h" | 36 #include "media/base/channel_layout.h" |
37 #include "media/base/media_log_event.h" | 37 #include "media/base/media_log_event.h" |
38 #include "third_party/WebKit/Source/Platform/chromium/public/WebFloatPoint.h" | 38 #include "third_party/WebKit/public/platform/WebFloatPoint.h" |
39 #include "third_party/WebKit/Source/Platform/chromium/public/WebFloatRect.h" | 39 #include "third_party/WebKit/public/platform/WebFloatRect.h" |
40 #include "third_party/WebKit/Source/WebKit/chromium/public/WebCompositionUnderli
ne.h" | 40 #include "third_party/WebKit/Source/WebKit/chromium/public/WebCompositionUnderli
ne.h" |
41 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFindOptions.h" | 41 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFindOptions.h" |
42 #include "third_party/WebKit/Source/WebKit/chromium/public/WebMediaPlayerAction.
h" | 42 #include "third_party/WebKit/Source/WebKit/chromium/public/WebMediaPlayerAction.
h" |
43 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPluginAction.h" | 43 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPluginAction.h" |
44 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPopupType.h" | 44 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPopupType.h" |
45 #include "third_party/WebKit/Source/WebKit/chromium/public/WebScreenInfo.h" | 45 #include "third_party/WebKit/Source/WebKit/chromium/public/WebScreenInfo.h" |
46 #include "third_party/WebKit/Source/WebKit/chromium/public/WebTextDirection.h" | 46 #include "third_party/WebKit/Source/WebKit/chromium/public/WebTextDirection.h" |
47 #include "third_party/skia/include/core/SkBitmap.h" | 47 #include "third_party/skia/include/core/SkBitmap.h" |
48 #include "ui/base/ime/text_input_type.h" | 48 #include "ui/base/ime/text_input_type.h" |
49 #include "ui/base/range/range.h" | 49 #include "ui/base/range/range.h" |
(...skipping 2260 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2310 // Since the browser keeps handles to the allocated transport DIBs, this | 2310 // Since the browser keeps handles to the allocated transport DIBs, this |
2311 // message is sent to tell the browser that it may release them when the | 2311 // message is sent to tell the browser that it may release them when the |
2312 // renderer is finished with them. | 2312 // renderer is finished with them. |
2313 IPC_MESSAGE_CONTROL1(ViewHostMsg_FreeTransportDIB, | 2313 IPC_MESSAGE_CONTROL1(ViewHostMsg_FreeTransportDIB, |
2314 TransportDIB::Id /* DIB id */) | 2314 TransportDIB::Id /* DIB id */) |
2315 #endif | 2315 #endif |
2316 | 2316 |
2317 // Adding a new message? Stick to the sort order above: first platform | 2317 // Adding a new message? Stick to the sort order above: first platform |
2318 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform | 2318 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform |
2319 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. | 2319 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. |
OLD | NEW |