| 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 // Multiply-included file, no traditional include guard. | 5 // Multiply-included file, no traditional include guard. |
| 6 #include "android_webview/common/aw_hit_test_data.h" | 6 #include "android_webview/common/aw_hit_test_data.h" |
| 7 #include "content/public/common/common_param_traits.h" | 7 #include "content/public/common/common_param_traits.h" |
| 8 #include "ipc/ipc_channel_handle.h" | 8 #include "ipc/ipc_channel_handle.h" |
| 9 #include "ipc/ipc_message_macros.h" | 9 #include "ipc/ipc_message_macros.h" |
| 10 #include "ipc/ipc_platform_file.h" | 10 #include "ipc/ipc_platform_file.h" |
| 11 #include "third_party/skia/include/core/SkColor.h" | 11 #include "third_party/skia/include/core/SkColor.h" |
| 12 #include "ui/gfx/geometry/point_f.h" | 12 #include "ui/gfx/geometry/point_f.h" |
| 13 #include "ui/gfx/geometry/size_f.h" | 13 #include "ui/gfx/geometry/size_f.h" |
| 14 #include "ui/gfx/ipc/gfx_param_traits.h" | 14 #include "ui/gfx/ipc/gfx_param_traits.h" |
| 15 #include "ui/gfx/ipc/skia/gfx_skia_param_traits.h" |
| 15 | 16 |
| 16 // Singly-included section for enums and custom IPC traits. | 17 // Singly-included section for enums and custom IPC traits. |
| 17 #ifndef ANDROID_WEBVIEW_COMMON_RENDER_VIEW_MESSAGES_H_ | 18 #ifndef ANDROID_WEBVIEW_COMMON_RENDER_VIEW_MESSAGES_H_ |
| 18 #define ANDROID_WEBVIEW_COMMON_RENDER_VIEW_MESSAGES_H_ | 19 #define ANDROID_WEBVIEW_COMMON_RENDER_VIEW_MESSAGES_H_ |
| 19 | 20 |
| 20 namespace IPC { | 21 namespace IPC { |
| 21 | 22 |
| 22 // TODO - add enums and custom IPC traits here when needed. | 23 // TODO - add enums and custom IPC traits here when needed. |
| 23 | 24 |
| 24 } // namespace IPC | 25 } // namespace IPC |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 base::string16 /* in - url */, | 112 base::string16 /* in - url */, |
| 112 bool /* in - has_user_gesture */, | 113 bool /* in - has_user_gesture */, |
| 113 bool /* in - is_redirect */, | 114 bool /* in - is_redirect */, |
| 114 bool /* in - is_main_frame */, | 115 bool /* in - is_main_frame */, |
| 115 bool /* out - result */) | 116 bool /* out - result */) |
| 116 | 117 |
| 117 // Sent when a subframe is created. | 118 // Sent when a subframe is created. |
| 118 IPC_MESSAGE_CONTROL2(AwViewHostMsg_SubFrameCreated, | 119 IPC_MESSAGE_CONTROL2(AwViewHostMsg_SubFrameCreated, |
| 119 int /* parent_render_frame_id */, | 120 int /* parent_render_frame_id */, |
| 120 int /* child_render_frame_id */) | 121 int /* child_render_frame_id */) |
| OLD | NEW |