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 message file, no traditional include guard. | 5 // Multiply-included message file, no traditional include guard. |
6 #include <string> | 6 #include <string> |
7 #include <vector> | 7 #include <vector> |
8 | 8 |
9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
10 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
138 IPC_STRUCT_END() | 138 IPC_STRUCT_END() |
139 | 139 |
140 #endif // defined(OS_WIN) | 140 #endif // defined(OS_WIN) |
141 | 141 |
142 IPC_STRUCT_BEGIN(AutomationURLRequest) | 142 IPC_STRUCT_BEGIN(AutomationURLRequest) |
143 IPC_STRUCT_MEMBER(std::string, url) | 143 IPC_STRUCT_MEMBER(std::string, url) |
144 IPC_STRUCT_MEMBER(std::string, method) | 144 IPC_STRUCT_MEMBER(std::string, method) |
145 IPC_STRUCT_MEMBER(std::string, referrer) | 145 IPC_STRUCT_MEMBER(std::string, referrer) |
146 IPC_STRUCT_MEMBER(std::string, extra_request_headers) | 146 IPC_STRUCT_MEMBER(std::string, extra_request_headers) |
147 IPC_STRUCT_MEMBER(scoped_refptr<net::UploadData>, upload_data) | 147 IPC_STRUCT_MEMBER(scoped_refptr<net::UploadData>, upload_data) |
148 IPC_STRUCT_MEMBER(int, resource_type) // see webkit/glue/resource_type.h | 148 IPC_STRUCT_MEMBER(int, resource_type) // see webkit/common/resource_type.h |
149 IPC_STRUCT_MEMBER(int, load_flags) // see net/base/load_flags.h | 149 IPC_STRUCT_MEMBER(int, load_flags) // see net/base/load_flags.h |
150 IPC_STRUCT_END() | 150 IPC_STRUCT_END() |
151 | 151 |
152 // Singly-included section for struct and custom IPC traits. | 152 // Singly-included section for struct and custom IPC traits. |
153 #ifndef CHROME_COMMON_AUTOMATION_MESSAGES_H_ | 153 #ifndef CHROME_COMMON_AUTOMATION_MESSAGES_H_ |
154 #define CHROME_COMMON_AUTOMATION_MESSAGES_H_ | 154 #define CHROME_COMMON_AUTOMATION_MESSAGES_H_ |
155 | 155 |
156 // This struct passes information about the context menu in Chrome stored | 156 // This struct passes information about the context menu in Chrome stored |
157 // as a ui::MenuModel to Chrome Frame. It is basically a container of | 157 // as a ui::MenuModel to Chrome Frame. It is basically a container of |
158 // items that go in the menu. An item may be a submenu, so the data | 158 // items that go in the menu. An item may be a submenu, so the data |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
215 static void Log(const param_type& p, std::string* l); | 215 static void Log(const param_type& p, std::string* l); |
216 }; | 216 }; |
217 | 217 |
218 } // namespace IPC | 218 } // namespace IPC |
219 | 219 |
220 #endif // CHROME_COMMON_AUTOMATION_MESSAGES_H_ | 220 #endif // CHROME_COMMON_AUTOMATION_MESSAGES_H_ |
221 | 221 |
222 // Keep this internal message file unchanged to preserve line numbering | 222 // Keep this internal message file unchanged to preserve line numbering |
223 // (and hence the dubious __LINE__-based message numberings) across versions. | 223 // (and hence the dubious __LINE__-based message numberings) across versions. |
224 #include "chrome/common/automation_messages_internal.h" | 224 #include "chrome/common/automation_messages_internal.h" |
OLD | NEW |