| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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" |
| 11 #include "chrome/common/automation_constants.h" | 11 #include "chrome/common/automation_constants.h" |
| 12 #include "chrome/common/content_settings.h" | 12 #include "chrome/common/content_settings.h" |
| 13 #include "content/common/common_param_traits.h" | 13 #include "content/public/common/common_param_traits.h" |
| 14 #include "content/common/webkit_param_traits.h" | |
| 15 #include "content/public/common/page_type.h" | 14 #include "content/public/common/page_type.h" |
| 16 #include "content/public/common/security_style.h" | 15 #include "content/public/common/security_style.h" |
| 16 #include "content/public/common/webkit_param_traits.h" |
| 17 #include "googleurl/src/gurl.h" | 17 #include "googleurl/src/gurl.h" |
| 18 #include "ipc/ipc_message_macros.h" | 18 #include "ipc/ipc_message_macros.h" |
| 19 #include "ipc/ipc_message_utils.h" | 19 #include "ipc/ipc_message_utils.h" |
| 20 #include "net/base/cert_status_flags.h" | 20 #include "net/base/cert_status_flags.h" |
| 21 #include "net/base/host_port_pair.h" | 21 #include "net/base/host_port_pair.h" |
| 22 #include "net/base/upload_data.h" | 22 #include "net/base/upload_data.h" |
| 23 #include "net/url_request/url_request_status.h" | 23 #include "net/url_request/url_request_status.h" |
| 24 #include "ui/gfx/rect.h" | 24 #include "ui/gfx/rect.h" |
| 25 #include "webkit/glue/window_open_disposition.h" | 25 #include "webkit/glue/window_open_disposition.h" |
| 26 | 26 |
| (...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 197 static void Log(const param_type& p, std::string* l); | 197 static void Log(const param_type& p, std::string* l); |
| 198 }; | 198 }; |
| 199 | 199 |
| 200 } // namespace IPC | 200 } // namespace IPC |
| 201 | 201 |
| 202 #endif // CHROME_COMMON_AUTOMATION_MESSAGES_H_ | 202 #endif // CHROME_COMMON_AUTOMATION_MESSAGES_H_ |
| 203 | 203 |
| 204 // Keep this internal message file unchanged to preserve line numbering | 204 // Keep this internal message file unchanged to preserve line numbering |
| 205 // (and hence the dubious __LINE__-based message numberings) across versions. | 205 // (and hence the dubious __LINE__-based message numberings) across versions. |
| 206 #include "chrome/common/automation_messages_internal.h" | 206 #include "chrome/common/automation_messages_internal.h" |
| OLD | NEW |