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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
71 IPC_ENUM_TRAITS(blink::WebMediaPlayerAction::Type) | 71 IPC_ENUM_TRAITS(blink::WebMediaPlayerAction::Type) |
72 IPC_ENUM_TRAITS(blink::WebPluginAction::Type) | 72 IPC_ENUM_TRAITS(blink::WebPluginAction::Type) |
73 IPC_ENUM_TRAITS(blink::WebPopupType) | 73 IPC_ENUM_TRAITS(blink::WebPopupType) |
74 IPC_ENUM_TRAITS(blink::WebTextDirection) | 74 IPC_ENUM_TRAITS(blink::WebTextDirection) |
75 IPC_ENUM_TRAITS(WindowContainerType) | 75 IPC_ENUM_TRAITS(WindowContainerType) |
76 IPC_ENUM_TRAITS(content::FaviconURL::IconType) | 76 IPC_ENUM_TRAITS(content::FaviconURL::IconType) |
77 IPC_ENUM_TRAITS(content::FileChooserParams::Mode) | 77 IPC_ENUM_TRAITS(content::FileChooserParams::Mode) |
78 IPC_ENUM_TRAITS(content::MenuItem::Type) | 78 IPC_ENUM_TRAITS(content::MenuItem::Type) |
79 IPC_ENUM_TRAITS(content::NavigationGesture) | 79 IPC_ENUM_TRAITS(content::NavigationGesture) |
80 IPC_ENUM_TRAITS(content::PageZoom) | 80 IPC_ENUM_TRAITS(content::PageZoom) |
81 IPC_ENUM_TRAITS(content::RendererPreferencesHintingEnum) | 81 IPC_ENUM_TRAITS(gfx::FontRenderParams::Hinting) |
82 IPC_ENUM_TRAITS(content::RendererPreferencesSubpixelRenderingEnum) | 82 IPC_ENUM_TRAITS(gfx::FontRenderParams::SubpixelRendering) |
83 IPC_ENUM_TRAITS_MAX_VALUE(content::TapMultipleTargetsStrategy, | 83 IPC_ENUM_TRAITS_MAX_VALUE(content::TapMultipleTargetsStrategy, |
84 content::TAP_MULTIPLE_TARGETS_STRATEGY_MAX) | 84 content::TAP_MULTIPLE_TARGETS_STRATEGY_MAX) |
85 IPC_ENUM_TRAITS(content::StopFindAction) | 85 IPC_ENUM_TRAITS(content::StopFindAction) |
86 IPC_ENUM_TRAITS(content::ThreeDAPIType) | 86 IPC_ENUM_TRAITS(content::ThreeDAPIType) |
87 IPC_ENUM_TRAITS(media::ChannelLayout) | 87 IPC_ENUM_TRAITS(media::ChannelLayout) |
88 IPC_ENUM_TRAITS(media::MediaLogEvent::Type) | 88 IPC_ENUM_TRAITS(media::MediaLogEvent::Type) |
89 IPC_ENUM_TRAITS_MAX_VALUE(ui::TextInputMode, ui::TEXT_INPUT_MODE_MAX) | 89 IPC_ENUM_TRAITS_MAX_VALUE(ui::TextInputMode, ui::TEXT_INPUT_MODE_MAX) |
90 IPC_ENUM_TRAITS(ui::TextInputType) | 90 IPC_ENUM_TRAITS(ui::TextInputType) |
91 | 91 |
92 #if defined(OS_MACOSX) | 92 #if defined(OS_MACOSX) |
(...skipping 1587 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1680 // Since the browser keeps handles to the allocated transport DIBs, this | 1680 // Since the browser keeps handles to the allocated transport DIBs, this |
1681 // message is sent to tell the browser that it may release them when the | 1681 // message is sent to tell the browser that it may release them when the |
1682 // renderer is finished with them. | 1682 // renderer is finished with them. |
1683 IPC_MESSAGE_CONTROL1(ViewHostMsg_FreeTransportDIB, | 1683 IPC_MESSAGE_CONTROL1(ViewHostMsg_FreeTransportDIB, |
1684 TransportDIB::Id /* DIB id */) | 1684 TransportDIB::Id /* DIB id */) |
1685 #endif | 1685 #endif |
1686 | 1686 |
1687 // Adding a new message? Stick to the sort order above: first platform | 1687 // Adding a new message? Stick to the sort order above: first platform |
1688 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform | 1688 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform |
1689 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. | 1689 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. |
OLD | NEW |