| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 interacting with frames. | 5 // IPC messages for interacting with frames. |
| 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 28 matching lines...) Expand all Loading... |
| 39 #include "content/public/common/transition_element.h" | 39 #include "content/public/common/transition_element.h" |
| 40 #include "ipc/ipc_message_macros.h" | 40 #include "ipc/ipc_message_macros.h" |
| 41 #include "ipc/ipc_platform_file.h" | 41 #include "ipc/ipc_platform_file.h" |
| 42 #include "third_party/WebKit/public/platform/WebFocusType.h" | 42 #include "third_party/WebKit/public/platform/WebFocusType.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/WebFrameOwnerProperties.h" | 44 #include "third_party/WebKit/public/web/WebFrameOwnerProperties.h" |
| 45 #include "third_party/WebKit/public/web/WebTreeScopeType.h" | 45 #include "third_party/WebKit/public/web/WebTreeScopeType.h" |
| 46 #include "ui/gfx/geometry/rect.h" | 46 #include "ui/gfx/geometry/rect.h" |
| 47 #include "ui/gfx/geometry/rect_f.h" | 47 #include "ui/gfx/geometry/rect_f.h" |
| 48 #include "ui/gfx/ipc/gfx_param_traits.h" | 48 #include "ui/gfx/ipc/gfx_param_traits.h" |
| 49 #include "ui/gfx/ipc/skia/gfx_skia_param_traits.h" |
| 49 #include "url/gurl.h" | 50 #include "url/gurl.h" |
| 50 #include "url/origin.h" | 51 #include "url/origin.h" |
| 51 | 52 |
| 52 #if defined(ENABLE_PLUGINS) | 53 #if defined(ENABLE_PLUGINS) |
| 53 #include "content/common/pepper_renderer_instance_data.h" | 54 #include "content/common/pepper_renderer_instance_data.h" |
| 54 #endif | 55 #endif |
| 55 | 56 |
| 56 // Singly-included section for type definitions. | 57 // Singly-included section for type definitions. |
| 57 #ifndef CONTENT_COMMON_FRAME_MESSAGES_H_ | 58 #ifndef CONTENT_COMMON_FRAME_MESSAGES_H_ |
| 58 #define CONTENT_COMMON_FRAME_MESSAGES_H_ | 59 #define CONTENT_COMMON_FRAME_MESSAGES_H_ |
| (...skipping 1398 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1457 IPC_MESSAGE_ROUTED3(FrameHostMsg_FindMatchRects_Reply, | 1458 IPC_MESSAGE_ROUTED3(FrameHostMsg_FindMatchRects_Reply, |
| 1458 int /* version */, | 1459 int /* version */, |
| 1459 std::vector<gfx::RectF> /* rects */, | 1460 std::vector<gfx::RectF> /* rects */, |
| 1460 gfx::RectF /* active_rect */) | 1461 gfx::RectF /* active_rect */) |
| 1461 #endif | 1462 #endif |
| 1462 | 1463 |
| 1463 // Adding a new message? Stick to the sort order above: first platform | 1464 // Adding a new message? Stick to the sort order above: first platform |
| 1464 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then | 1465 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then |
| 1465 // platform independent FrameHostMsg, then ifdefs for platform specific | 1466 // platform independent FrameHostMsg, then ifdefs for platform specific |
| 1466 // FrameHostMsg. | 1467 // FrameHostMsg. |
| OLD | NEW |