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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
48 #include "third_party/WebKit/public/platform/WebFloatRect.h" | 48 #include "third_party/WebKit/public/platform/WebFloatRect.h" |
49 #include "third_party/WebKit/public/platform/WebScreenInfo.h" | 49 #include "third_party/WebKit/public/platform/WebScreenInfo.h" |
50 #include "third_party/WebKit/public/platform/modules/screen_orientation/WebScree
nOrientationType.h" | 50 #include "third_party/WebKit/public/platform/modules/screen_orientation/WebScree
nOrientationType.h" |
51 #include "third_party/WebKit/public/web/WebDeviceEmulationParams.h" | 51 #include "third_party/WebKit/public/web/WebDeviceEmulationParams.h" |
52 #include "third_party/WebKit/public/web/WebMediaPlayerAction.h" | 52 #include "third_party/WebKit/public/web/WebMediaPlayerAction.h" |
53 #include "third_party/WebKit/public/web/WebPluginAction.h" | 53 #include "third_party/WebKit/public/web/WebPluginAction.h" |
54 #include "third_party/WebKit/public/web/WebPopupType.h" | 54 #include "third_party/WebKit/public/web/WebPopupType.h" |
55 #include "third_party/WebKit/public/web/WebSharedWorkerCreationContextType.h" | 55 #include "third_party/WebKit/public/web/WebSharedWorkerCreationContextType.h" |
56 #include "third_party/WebKit/public/web/WebSharedWorkerCreationErrors.h" | 56 #include "third_party/WebKit/public/web/WebSharedWorkerCreationErrors.h" |
57 #include "third_party/WebKit/public/web/WebTextDirection.h" | 57 #include "third_party/WebKit/public/web/WebTextDirection.h" |
58 #include "third_party/skia/include/core/SkBitmap.h" | |
59 #include "ui/base/ime/text_input_mode.h" | 58 #include "ui/base/ime/text_input_mode.h" |
60 #include "ui/base/ime/text_input_type.h" | 59 #include "ui/base/ime/text_input_type.h" |
61 #include "ui/base/ui_base_types.h" | 60 #include "ui/base/ui_base_types.h" |
62 #include "ui/gfx/geometry/point.h" | 61 #include "ui/gfx/geometry/point.h" |
63 #include "ui/gfx/geometry/rect.h" | 62 #include "ui/gfx/geometry/rect.h" |
64 #include "ui/gfx/geometry/rect_f.h" | 63 #include "ui/gfx/geometry/rect_f.h" |
65 #include "ui/gfx/geometry/vector2d.h" | 64 #include "ui/gfx/geometry/vector2d.h" |
66 #include "ui/gfx/geometry/vector2d_f.h" | 65 #include "ui/gfx/geometry/vector2d_f.h" |
67 #include "ui/gfx/ipc/gfx_param_traits.h" | 66 #include "ui/gfx/ipc/gfx_param_traits.h" |
68 #include "ui/gfx/ipc/skia/gfx_skia_param_traits.h" | 67 #include "ui/gfx/ipc/skia/gfx_skia_param_traits.h" |
(...skipping 1178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1247 int /* y */) | 1246 int /* y */) |
1248 | 1247 |
1249 #elif defined(OS_MACOSX) | 1248 #elif defined(OS_MACOSX) |
1250 // Receives content of a web page as plain text. | 1249 // Receives content of a web page as plain text. |
1251 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string) | 1250 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string) |
1252 #endif | 1251 #endif |
1253 | 1252 |
1254 // Adding a new message? Stick to the sort order above: first platform | 1253 // Adding a new message? Stick to the sort order above: first platform |
1255 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform | 1254 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform |
1256 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. | 1255 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. |
OLD | NEW |