| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 #include "content/common/common_param_traits.h" |
| 6 |
| 5 #define IPC_MESSAGE_IMPL | 7 #define IPC_MESSAGE_IMPL |
| 6 #include "chrome/common/automation_messages.h" | 8 #include "chrome/common/automation_messages.h" |
| 7 | 9 |
| 8 AutomationURLRequest::AutomationURLRequest() | 10 AutomationURLRequest::AutomationURLRequest() |
| 9 : resource_type(0), | 11 : resource_type(0), |
| 10 load_flags(0) { | 12 load_flags(0) { |
| 11 } | 13 } |
| 12 | 14 |
| 13 AutomationURLRequest::AutomationURLRequest( | 15 AutomationURLRequest::AutomationURLRequest( |
| 14 const std::string& in_url, | 16 const std::string& in_url, |
| (...skipping 653 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 668 l->append(", "); | 670 l->append(", "); |
| 669 LogParam(p.disposition, l); | 671 LogParam(p.disposition, l); |
| 670 l->append(", "); | 672 l->append(", "); |
| 671 LogParam(p.user_gesture, l); | 673 LogParam(p.user_gesture, l); |
| 672 l->append(","); | 674 l->append(","); |
| 673 LogParam(p.profile_name, l); | 675 LogParam(p.profile_name, l); |
| 674 l->append(")"); | 676 l->append(")"); |
| 675 } | 677 } |
| 676 | 678 |
| 677 } // namespace IPC | 679 } // namespace IPC |
| OLD | NEW |