| 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 IPC_STRUCT_MEMBER(std::string, headers) | 47 IPC_STRUCT_MEMBER(std::string, headers) |
| 48 IPC_STRUCT_MEMBER(int64, content_length) | 48 IPC_STRUCT_MEMBER(int64, content_length) |
| 49 IPC_STRUCT_MEMBER(base::Time, last_modified) | 49 IPC_STRUCT_MEMBER(base::Time, last_modified) |
| 50 IPC_STRUCT_MEMBER(std::string, redirect_url) | 50 IPC_STRUCT_MEMBER(std::string, redirect_url) |
| 51 IPC_STRUCT_MEMBER(int, redirect_status) | 51 IPC_STRUCT_MEMBER(int, redirect_status) |
| 52 IPC_STRUCT_MEMBER(net::HostPortPair, socket_address) | 52 IPC_STRUCT_MEMBER(net::HostPortPair, socket_address) |
| 53 IPC_STRUCT_MEMBER(uint64, upload_size) | 53 IPC_STRUCT_MEMBER(uint64, upload_size) |
| 54 IPC_STRUCT_END() | 54 IPC_STRUCT_END() |
| 55 | 55 |
| 56 IPC_STRUCT_BEGIN(ExternalTabSettings) | 56 IPC_STRUCT_BEGIN(ExternalTabSettings) |
| 57 IPC_STRUCT_MEMBER(gfx::NativeWindow, parent) | 57 IPC_STRUCT_MEMBER(gfx::AcceleratedWidget, parent) |
| 58 IPC_STRUCT_MEMBER(gfx::Rect, dimensions) | 58 IPC_STRUCT_MEMBER(gfx::Rect, dimensions) |
| 59 IPC_STRUCT_MEMBER(unsigned int, style) | 59 IPC_STRUCT_MEMBER(unsigned int, style) |
| 60 IPC_STRUCT_MEMBER(bool, is_incognito) | 60 IPC_STRUCT_MEMBER(bool, is_incognito) |
| 61 IPC_STRUCT_MEMBER(bool, load_requests_via_automation) | 61 IPC_STRUCT_MEMBER(bool, load_requests_via_automation) |
| 62 IPC_STRUCT_MEMBER(bool, handle_top_level_requests) | 62 IPC_STRUCT_MEMBER(bool, handle_top_level_requests) |
| 63 IPC_STRUCT_MEMBER(GURL, initial_url) | 63 IPC_STRUCT_MEMBER(GURL, initial_url) |
| 64 IPC_STRUCT_MEMBER(GURL, referrer) | 64 IPC_STRUCT_MEMBER(GURL, referrer) |
| 65 IPC_STRUCT_MEMBER(bool, infobars_enabled) | 65 IPC_STRUCT_MEMBER(bool, infobars_enabled) |
| 66 IPC_STRUCT_MEMBER(bool, route_all_top_level_navigations) | 66 IPC_STRUCT_MEMBER(bool, route_all_top_level_navigations) |
| 67 IPC_STRUCT_END() | 67 IPC_STRUCT_END() |
| (...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 225 static void Log(const param_type& p, std::string* l); | 225 static void Log(const param_type& p, std::string* l); |
| 226 }; | 226 }; |
| 227 | 227 |
| 228 } // namespace IPC | 228 } // namespace IPC |
| 229 | 229 |
| 230 #endif // CHROME_COMMON_AUTOMATION_MESSAGES_H_ | 230 #endif // CHROME_COMMON_AUTOMATION_MESSAGES_H_ |
| 231 | 231 |
| 232 // Keep this internal message file unchanged to preserve line numbering | 232 // Keep this internal message file unchanged to preserve line numbering |
| 233 // (and hence the dubious __LINE__-based message numberings) across versions. | 233 // (and hence the dubious __LINE__-based message numberings) across versions. |
| 234 #include "chrome/common/automation_messages_internal.h" | 234 #include "chrome/common/automation_messages_internal.h" |
| OLD | NEW |