| 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 #include "chrome/common/common_param_traits.h" | |
| 6 #include "content/public/common/webkit_param_traits.h" | 5 #include "content/public/common/webkit_param_traits.h" |
| 7 #include "ui/base/models/menu_model.h" | 6 #include "ui/base/models/menu_model.h" |
| 8 | 7 |
| 9 // Get basic type definitions. | 8 // Get basic type definitions. |
| 10 #define IPC_MESSAGE_IMPL | 9 #define IPC_MESSAGE_IMPL |
| 11 #include "chrome/common/automation_messages.h" | 10 #include "chrome/common/automation_messages.h" |
| 12 | 11 |
| 13 // Generate constructors. | 12 // Generate constructors. |
| 14 #include "ipc/struct_constructor_macros.h" | 13 #include "ipc/struct_constructor_macros.h" |
| 15 #include "chrome/common/automation_messages.h" | 14 #include "chrome/common/automation_messages.h" |
| (...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 162 l->append("("); | 161 l->append("("); |
| 163 LogParam(std::string(reinterpret_cast<const char*>(&p.mouse_event), | 162 LogParam(std::string(reinterpret_cast<const char*>(&p.mouse_event), |
| 164 sizeof(p.mouse_event)), | 163 sizeof(p.mouse_event)), |
| 165 l); | 164 l); |
| 166 l->append(", "); | 165 l->append(", "); |
| 167 LogParam(p.location_script_chain, l); | 166 LogParam(p.location_script_chain, l); |
| 168 l->append(")"); | 167 l->append(")"); |
| 169 } | 168 } |
| 170 | 169 |
| 171 } // namespace IPC | 170 } // namespace IPC |
| OLD | NEW |