| 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 <map> |     9 #include <map> | 
|    10 #include <string> |    10 #include <string> | 
|    11 #include <vector> |    11 #include <vector> | 
|    12  |    12  | 
|    13 #include "build/build_config.h" |    13 #include "build/build_config.h" | 
|    14  |    14  | 
|    15 #include "app/clipboard/clipboard.h" |    15 #include "app/clipboard/clipboard.h" | 
 |    16 #include "app/gfx/native_widget_types.h" | 
|    16 #include "base/file_path.h" |    17 #include "base/file_path.h" | 
|    17 #include "base/nullable_string16.h" |    18 #include "base/nullable_string16.h" | 
|    18 #include "base/platform_file.h" |    19 #include "base/platform_file.h" | 
|    19 #include "base/gfx/rect.h" |    20 #include "base/gfx/rect.h" | 
|    20 #include "base/gfx/native_widget_types.h" |  | 
|    21 #include "base/shared_memory.h" |    21 #include "base/shared_memory.h" | 
|    22 #include "base/values.h" |    22 #include "base/values.h" | 
|    23 #include "chrome/common/css_colors.h" |    23 #include "chrome/common/css_colors.h" | 
|    24 #include "chrome/common/extensions/update_manifest.h" |    24 #include "chrome/common/extensions/update_manifest.h" | 
|    25 #include "chrome/common/nacl_types.h" |    25 #include "chrome/common/nacl_types.h" | 
|    26 #include "chrome/common/notification_type.h" |    26 #include "chrome/common/notification_type.h" | 
|    27 #include "chrome/common/transport_dib.h" |    27 #include "chrome/common/transport_dib.h" | 
|    28 #include "chrome/common/view_types.h" |    28 #include "chrome/common/view_types.h" | 
|    29 #include "ipc/ipc_channel_handle.h" |    29 #include "ipc/ipc_channel_handle.h" | 
|    30 #include "ipc/ipc_message.h" |    30 #include "ipc/ipc_message.h" | 
| (...skipping 1881 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  1912                        int /* socket_id */, |  1912                        int /* socket_id */, | 
|  1913                        std::vector<char> /* data */) |  1913                        std::vector<char> /* data */) | 
|  1914  |  1914  | 
|  1915   // Request to close the Socket Stream. |  1915   // Request to close the Socket Stream. | 
|  1916   // The browser will send ViewMsg_SocketStream_Closed back when the Socket |  1916   // The browser will send ViewMsg_SocketStream_Closed back when the Socket | 
|  1917   // Stream is completely closed. |  1917   // Stream is completely closed. | 
|  1918   IPC_MESSAGE_CONTROL1(ViewHostMsg_SocketStream_Close, |  1918   IPC_MESSAGE_CONTROL1(ViewHostMsg_SocketStream_Close, | 
|  1919                        int /* socket_id */) |  1919                        int /* socket_id */) | 
|  1920  |  1920  | 
|  1921 IPC_END_MESSAGES(ViewHost) |  1921 IPC_END_MESSAGES(ViewHost) | 
| OLD | NEW |