| 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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 #include "third_party/skia/include/core/SkBitmap.h" | 58 #include "third_party/skia/include/core/SkBitmap.h" |
| 59 #include "ui/base/ime/text_input_mode.h" | 59 #include "ui/base/ime/text_input_mode.h" |
| 60 #include "ui/base/ime/text_input_type.h" | 60 #include "ui/base/ime/text_input_type.h" |
| 61 #include "ui/base/ui_base_types.h" | 61 #include "ui/base/ui_base_types.h" |
| 62 #include "ui/gfx/geometry/point.h" | 62 #include "ui/gfx/geometry/point.h" |
| 63 #include "ui/gfx/geometry/rect.h" | 63 #include "ui/gfx/geometry/rect.h" |
| 64 #include "ui/gfx/geometry/rect_f.h" | 64 #include "ui/gfx/geometry/rect_f.h" |
| 65 #include "ui/gfx/geometry/vector2d.h" | 65 #include "ui/gfx/geometry/vector2d.h" |
| 66 #include "ui/gfx/geometry/vector2d_f.h" | 66 #include "ui/gfx/geometry/vector2d_f.h" |
| 67 #include "ui/gfx/ipc/gfx_param_traits.h" | 67 #include "ui/gfx/ipc/gfx_param_traits.h" |
| 68 #include "ui/gfx/ipc/skia/gfx_skia_param_traits.h" |
| 68 #include "ui/gfx/range/range.h" | 69 #include "ui/gfx/range/range.h" |
| 69 | 70 |
| 70 #if defined(OS_MACOSX) | 71 #if defined(OS_MACOSX) |
| 71 #include "third_party/WebKit/public/platform/WebScrollbarButtonsPlacement.h" | 72 #include "third_party/WebKit/public/platform/WebScrollbarButtonsPlacement.h" |
| 72 #include "third_party/WebKit/public/web/mac/WebScrollbarTheme.h" | 73 #include "third_party/WebKit/public/web/mac/WebScrollbarTheme.h" |
| 73 #endif | 74 #endif |
| 74 | 75 |
| 75 #undef IPC_MESSAGE_EXPORT | 76 #undef IPC_MESSAGE_EXPORT |
| 76 #define IPC_MESSAGE_EXPORT CONTENT_EXPORT | 77 #define IPC_MESSAGE_EXPORT CONTENT_EXPORT |
| 77 | 78 |
| (...skipping 1232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1310 // Instructs the browser to start plugin IME. | 1311 // Instructs the browser to start plugin IME. |
| 1311 IPC_MESSAGE_ROUTED0(ViewHostMsg_StartPluginIme) | 1312 IPC_MESSAGE_ROUTED0(ViewHostMsg_StartPluginIme) |
| 1312 | 1313 |
| 1313 // Receives content of a web page as plain text. | 1314 // Receives content of a web page as plain text. |
| 1314 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string) | 1315 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string) |
| 1315 #endif | 1316 #endif |
| 1316 | 1317 |
| 1317 // Adding a new message? Stick to the sort order above: first platform | 1318 // Adding a new message? Stick to the sort order above: first platform |
| 1318 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform | 1319 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform |
| 1319 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. | 1320 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. |
| OLD | NEW |