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