| 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/memory/shared_memory.h" | 8 #include "base/memory/shared_memory.h" |
| 9 #include "base/process/process.h" | 9 #include "base/process/process.h" |
| 10 #include "base/strings/string16.h" | 10 #include "base/strings/string16.h" |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 #include "ipc/ipc_message_macros.h" | 35 #include "ipc/ipc_message_macros.h" |
| 36 #include "ipc/ipc_platform_file.h" | 36 #include "ipc/ipc_platform_file.h" |
| 37 #include "media/audio/audio_parameters.h" | 37 #include "media/audio/audio_parameters.h" |
| 38 #include "media/base/channel_layout.h" | 38 #include "media/base/channel_layout.h" |
| 39 #include "media/base/media_log_event.h" | 39 #include "media/base/media_log_event.h" |
| 40 #include "net/base/network_change_notifier.h" | 40 #include "net/base/network_change_notifier.h" |
| 41 #include "third_party/WebKit/public/platform/WebDisplayMode.h" | 41 #include "third_party/WebKit/public/platform/WebDisplayMode.h" |
| 42 #include "third_party/WebKit/public/platform/WebFloatPoint.h" | 42 #include "third_party/WebKit/public/platform/WebFloatPoint.h" |
| 43 #include "third_party/WebKit/public/platform/WebFloatRect.h" | 43 #include "third_party/WebKit/public/platform/WebFloatRect.h" |
| 44 #include "third_party/WebKit/public/platform/WebScreenInfo.h" | 44 #include "third_party/WebKit/public/platform/WebScreenInfo.h" |
| 45 #include "third_party/WebKit/public/platform/WebScreenOrientationType.h" | 45 #include "third_party/WebKit/public/platform/modules/screen_orientation/WebScree
nOrientationType.h" |
| 46 #include "third_party/WebKit/public/web/WebDeviceEmulationParams.h" | 46 #include "third_party/WebKit/public/web/WebDeviceEmulationParams.h" |
| 47 #include "third_party/WebKit/public/web/WebFindOptions.h" | 47 #include "third_party/WebKit/public/web/WebFindOptions.h" |
| 48 #include "third_party/WebKit/public/web/WebMediaPlayerAction.h" | 48 #include "third_party/WebKit/public/web/WebMediaPlayerAction.h" |
| 49 #include "third_party/WebKit/public/web/WebPluginAction.h" | 49 #include "third_party/WebKit/public/web/WebPluginAction.h" |
| 50 #include "third_party/WebKit/public/web/WebPopupType.h" | 50 #include "third_party/WebKit/public/web/WebPopupType.h" |
| 51 #include "third_party/WebKit/public/web/WebTextDirection.h" | 51 #include "third_party/WebKit/public/web/WebTextDirection.h" |
| 52 #include "third_party/skia/include/core/SkBitmap.h" | 52 #include "third_party/skia/include/core/SkBitmap.h" |
| 53 #include "ui/base/ime/text_input_mode.h" | 53 #include "ui/base/ime/text_input_mode.h" |
| 54 #include "ui/base/ime/text_input_type.h" | 54 #include "ui/base/ime/text_input_type.h" |
| 55 #include "ui/base/ui_base_types.h" | 55 #include "ui/base/ui_base_types.h" |
| (...skipping 1557 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1613 // cached by the OS. Please see RenderMessageFilter::OnPreCacheFontCharacters | 1613 // cached by the OS. Please see RenderMessageFilter::OnPreCacheFontCharacters |
| 1614 // for details. | 1614 // for details. |
| 1615 IPC_SYNC_MESSAGE_CONTROL2_0(ViewHostMsg_PreCacheFontCharacters, | 1615 IPC_SYNC_MESSAGE_CONTROL2_0(ViewHostMsg_PreCacheFontCharacters, |
| 1616 LOGFONT /* font_data */, | 1616 LOGFONT /* font_data */, |
| 1617 base::string16 /* characters */) | 1617 base::string16 /* characters */) |
| 1618 #endif | 1618 #endif |
| 1619 | 1619 |
| 1620 // Adding a new message? Stick to the sort order above: first platform | 1620 // Adding a new message? Stick to the sort order above: first platform |
| 1621 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform | 1621 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform |
| 1622 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. | 1622 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. |
| OLD | NEW |