| 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/vector2d.h" |
| 52 #include "ui/gfx/ipc/gfx_param_traits.h" | 54 #include "ui/gfx/ipc/gfx_param_traits.h" |
| 53 #include "ui/gfx/point.h" | |
| 54 #include "ui/gfx/range/range.h" | 55 #include "ui/gfx/range/range.h" |
| 55 #include "ui/gfx/rect.h" | 56 #include "ui/gfx/rect.h" |
| 56 #include "ui/gfx/rect_f.h" | 57 #include "ui/gfx/rect_f.h" |
| 57 #include "ui/gfx/vector2d.h" | |
| 58 #include "ui/gfx/vector2d_f.h" | 58 #include "ui/gfx/vector2d_f.h" |
| 59 #include "ui/shell_dialogs/selected_file_info.h" | 59 #include "ui/shell_dialogs/selected_file_info.h" |
| 60 | 60 |
| 61 #if defined(OS_MACOSX) | 61 #if defined(OS_MACOSX) |
| 62 #include "content/common/mac/font_descriptor.h" | 62 #include "content/common/mac/font_descriptor.h" |
| 63 #include "third_party/WebKit/public/web/mac/WebScrollbarTheme.h" | 63 #include "third_party/WebKit/public/web/mac/WebScrollbarTheme.h" |
| 64 #endif | 64 #endif |
| 65 | 65 |
| 66 #undef IPC_MESSAGE_EXPORT | 66 #undef IPC_MESSAGE_EXPORT |
| 67 #define IPC_MESSAGE_EXPORT CONTENT_EXPORT | 67 #define IPC_MESSAGE_EXPORT CONTENT_EXPORT |
| (...skipping 1614 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1682 // Since the browser keeps handles to the allocated transport DIBs, this | 1682 // Since the browser keeps handles to the allocated transport DIBs, this |
| 1683 // message is sent to tell the browser that it may release them when the | 1683 // message is sent to tell the browser that it may release them when the |
| 1684 // renderer is finished with them. | 1684 // renderer is finished with them. |
| 1685 IPC_MESSAGE_CONTROL1(ViewHostMsg_FreeTransportDIB, | 1685 IPC_MESSAGE_CONTROL1(ViewHostMsg_FreeTransportDIB, |
| 1686 TransportDIB::Id /* DIB id */) | 1686 TransportDIB::Id /* DIB id */) |
| 1687 #endif | 1687 #endif |
| 1688 | 1688 |
| 1689 // Adding a new message? Stick to the sort order above: first platform | 1689 // Adding a new message? Stick to the sort order above: first platform |
| 1690 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform | 1690 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform |
| 1691 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. | 1691 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. |
| OLD | NEW |