| 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 #include "third_party/WebKit/public/platform/WebScreenInfo.h" | 42 #include "third_party/WebKit/public/platform/WebScreenInfo.h" |
| 43 #include "third_party/WebKit/public/web/WebFindOptions.h" | 43 #include "third_party/WebKit/public/web/WebFindOptions.h" |
| 44 #include "third_party/WebKit/public/web/WebMediaPlayerAction.h" | 44 #include "third_party/WebKit/public/web/WebMediaPlayerAction.h" |
| 45 #include "third_party/WebKit/public/web/WebPluginAction.h" | 45 #include "third_party/WebKit/public/web/WebPluginAction.h" |
| 46 #include "third_party/WebKit/public/web/WebPopupType.h" | 46 #include "third_party/WebKit/public/web/WebPopupType.h" |
| 47 #include "third_party/WebKit/public/web/WebTextDirection.h" | 47 #include "third_party/WebKit/public/web/WebTextDirection.h" |
| 48 #include "third_party/skia/include/core/SkBitmap.h" | 48 #include "third_party/skia/include/core/SkBitmap.h" |
| 49 #include "ui/base/ime/text_input_mode.h" | 49 #include "ui/base/ime/text_input_mode.h" |
| 50 #include "ui/base/ime/text_input_type.h" | 50 #include "ui/base/ime/text_input_type.h" |
| 51 #include "ui/base/ui_base_types.h" | 51 #include "ui/base/ui_base_types.h" |
| 52 #include "ui/gfx/geometry/point.h" | |
| 53 #include "ui/gfx/geometry/rect.h" | |
| 54 #include "ui/gfx/geometry/rect_f.h" | |
| 55 #include "ui/gfx/geometry/vector2d.h" | |
| 56 #include "ui/gfx/geometry/vector2d_f.h" | |
| 57 #include "ui/gfx/ipc/gfx_param_traits.h" | 52 #include "ui/gfx/ipc/gfx_param_traits.h" |
| 53 #include "ui/gfx/point.h" |
| 58 #include "ui/gfx/range/range.h" | 54 #include "ui/gfx/range/range.h" |
| 55 #include "ui/gfx/rect.h" |
| 56 #include "ui/gfx/rect_f.h" |
| 57 #include "ui/gfx/vector2d.h" |
| 58 #include "ui/gfx/vector2d_f.h" |
| 59 | 59 |
| 60 #if defined(OS_MACOSX) | 60 #if defined(OS_MACOSX) |
| 61 #include "content/common/mac/font_descriptor.h" | 61 #include "content/common/mac/font_descriptor.h" |
| 62 #include "third_party/WebKit/public/web/mac/WebScrollbarTheme.h" | 62 #include "third_party/WebKit/public/web/mac/WebScrollbarTheme.h" |
| 63 #endif | 63 #endif |
| 64 | 64 |
| 65 #if defined(ENABLE_PLUGINS) | 65 #if defined(ENABLE_PLUGINS) |
| 66 #include "content/common/pepper_renderer_instance_data.h" | 66 #include "content/common/pepper_renderer_instance_data.h" |
| 67 #endif | 67 #endif |
| 68 | 68 |
| (...skipping 1597 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1666 // Since the browser keeps handles to the allocated transport DIBs, this | 1666 // Since the browser keeps handles to the allocated transport DIBs, this |
| 1667 // message is sent to tell the browser that it may release them when the | 1667 // message is sent to tell the browser that it may release them when the |
| 1668 // renderer is finished with them. | 1668 // renderer is finished with them. |
| 1669 IPC_MESSAGE_CONTROL1(ViewHostMsg_FreeTransportDIB, | 1669 IPC_MESSAGE_CONTROL1(ViewHostMsg_FreeTransportDIB, |
| 1670 TransportDIB::Id /* DIB id */) | 1670 TransportDIB::Id /* DIB id */) |
| 1671 #endif | 1671 #endif |
| 1672 | 1672 |
| 1673 // Adding a new message? Stick to the sort order above: first platform | 1673 // Adding a new message? Stick to the sort order above: first platform |
| 1674 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform | 1674 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform |
| 1675 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. | 1675 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. |
| OLD | NEW |