OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 // This header is meant to be included in multiple passes, hence no traditional | 5 // This header is meant to be included in multiple passes, hence no traditional |
6 // header guard. | 6 // header guard. |
7 // See ipc_message_macros.h for explanation of the macros and passes. | 7 // See ipc_message_macros.h for explanation of the macros and passes. |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
11 | 11 |
12 #include "build/build_config.h" | 12 #include "build/build_config.h" |
13 | 13 |
14 #include "base/clipboard.h" | 14 #include "base/clipboard.h" |
15 #include "base/file_path.h" | 15 #include "base/file_path.h" |
16 #include "base/gfx/rect.h" | 16 #include "base/gfx/rect.h" |
17 #include "base/gfx/native_widget_types.h" | 17 #include "base/gfx/native_widget_types.h" |
18 #include "base/shared_memory.h" | 18 #include "base/shared_memory.h" |
19 #include "base/values.h" | 19 #include "base/values.h" |
20 #include "chrome/common/ipc_channel_handle.h" | |
21 #include "chrome/common/ipc_message_macros.h" | |
22 #include "chrome/common/transport_dib.h" | 20 #include "chrome/common/transport_dib.h" |
| 21 #include "ipc/ipc_channel_handle.h" |
| 22 #include "ipc/ipc_message_macros.h" |
23 #include "third_party/skia/include/core/SkBitmap.h" | 23 #include "third_party/skia/include/core/SkBitmap.h" |
24 #include "webkit/glue/dom_operations.h" | 24 #include "webkit/glue/dom_operations.h" |
25 #include "webkit/glue/webappcachecontext.h" | 25 #include "webkit/glue/webappcachecontext.h" |
26 #include "webkit/glue/webcursor.h" | 26 #include "webkit/glue/webcursor.h" |
27 #include "webkit/glue/webplugin.h" | 27 #include "webkit/glue/webplugin.h" |
28 | 28 |
29 // TODO(mpcomplete): rename ViewMsg and ViewHostMsg to something that makes | 29 // TODO(mpcomplete): rename ViewMsg and ViewHostMsg to something that makes |
30 // more sense with our current design. | 30 // more sense with our current design. |
31 | 31 |
32 //----------------------------------------------------------------------------- | 32 //----------------------------------------------------------------------------- |
(...skipping 1470 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1503 // web resource. |error_message| is a user-readable explanation of what | 1503 // web resource. |error_message| is a user-readable explanation of what |
1504 // went wrong. | 1504 // went wrong. |
1505 IPC_MESSAGE_CONTROL1(UtilityHostMsg_UnpackWebResource_Failed, | 1505 IPC_MESSAGE_CONTROL1(UtilityHostMsg_UnpackWebResource_Failed, |
1506 std::string /* error_message, if any */) | 1506 std::string /* error_message, if any */) |
1507 | 1507 |
1508 // Sent by the renderer process to acknowledge receipt of a | 1508 // Sent by the renderer process to acknowledge receipt of a |
1509 // ViewMsg_CSSInsertRequest message and css has been inserted into the frame. | 1509 // ViewMsg_CSSInsertRequest message and css has been inserted into the frame. |
1510 IPC_MESSAGE_ROUTED0(ViewHostMsg_OnCSSInserted) | 1510 IPC_MESSAGE_ROUTED0(ViewHostMsg_OnCSSInserted) |
1511 | 1511 |
1512 IPC_END_MESSAGES(ViewHost) | 1512 IPC_END_MESSAGES(ViewHost) |
OLD | NEW |