| 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 <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/menu_item.h" | 31 #include "content/public/common/menu_item.h" |
| 32 #include "content/public/common/message_port_types.h" | 32 #include "content/public/common/message_port_types.h" |
| 33 #include "content/public/common/page_state.h" | 33 #include "content/public/common/page_state.h" |
| 34 #include "content/public/common/page_zoom.h" | 34 #include "content/public/common/page_zoom.h" |
| 35 #include "content/public/common/referrer.h" | 35 #include "content/public/common/referrer.h" |
| 36 #include "content/public/common/renderer_preferences.h" | 36 #include "content/public/common/renderer_preferences.h" |
| 37 #include "content/public/common/three_d_api_types.h" | 37 #include "content/public/common/three_d_api_types.h" |
| 38 #include "content/public/common/window_container_type.h" | 38 #include "content/public/common/window_container_type.h" |
| 39 #include "ipc/ipc_channel_handle.h" | 39 #include "ipc/ipc_channel_handle.h" |
| 40 #include "ipc/ipc_message_macros.h" | 40 #include "ipc/ipc_message_macros.h" |
| 41 #include "media/audio/audio_parameters.h" | 41 #include "media/base/audio_parameters.h" |
| 42 #include "media/base/channel_layout.h" | 42 #include "media/base/channel_layout.h" |
| 43 #include "media/base/media_log_event.h" | 43 #include "media/base/media_log_event.h" |
| 44 #include "net/base/network_change_notifier.h" | 44 #include "net/base/network_change_notifier.h" |
| 45 #include "third_party/WebKit/public/platform/WebDisplayMode.h" | 45 #include "third_party/WebKit/public/platform/WebDisplayMode.h" |
| 46 #include "third_party/WebKit/public/platform/WebFloatPoint.h" | 46 #include "third_party/WebKit/public/platform/WebFloatPoint.h" |
| 47 #include "third_party/WebKit/public/platform/WebFloatRect.h" | 47 #include "third_party/WebKit/public/platform/WebFloatRect.h" |
| 48 #include "third_party/WebKit/public/platform/WebScreenInfo.h" | 48 #include "third_party/WebKit/public/platform/WebScreenInfo.h" |
| 49 #include "third_party/WebKit/public/platform/modules/screen_orientation/WebScree
nOrientationType.h" | 49 #include "third_party/WebKit/public/platform/modules/screen_orientation/WebScree
nOrientationType.h" |
| 50 #include "third_party/WebKit/public/web/WebDeviceEmulationParams.h" | 50 #include "third_party/WebKit/public/web/WebDeviceEmulationParams.h" |
| 51 #include "third_party/WebKit/public/web/WebMediaPlayerAction.h" | 51 #include "third_party/WebKit/public/web/WebMediaPlayerAction.h" |
| (...skipping 1230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1282 int /* y */) | 1282 int /* y */) |
| 1283 | 1283 |
| 1284 #elif defined(OS_MACOSX) | 1284 #elif defined(OS_MACOSX) |
| 1285 // Receives content of a web page as plain text. | 1285 // Receives content of a web page as plain text. |
| 1286 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string) | 1286 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string) |
| 1287 #endif | 1287 #endif |
| 1288 | 1288 |
| 1289 // Adding a new message? Stick to the sort order above: first platform | 1289 // Adding a new message? Stick to the sort order above: first platform |
| 1290 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform | 1290 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform |
| 1291 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. | 1291 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. |
| OLD | NEW |