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 "chrome/common/render_messages_params.h" | 5 #include "chrome/common/render_messages_params.h" |
6 | 6 |
7 #include "chrome/common/navigation_gesture.h" | 7 #include "chrome/common/navigation_gesture.h" |
8 #include "chrome/common/common_param_traits.h" | 8 #include "chrome/common/common_param_traits.h" |
9 #include "chrome/common/extensions/extension_constants.h" | 9 #include "chrome/common/extensions/extension_constants.h" |
10 #include "chrome/common/render_messages.h" | 10 #include "chrome/common/render_messages.h" |
(...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
265 | 265 |
266 ViewHostMsg_DomMessage_Params::ViewHostMsg_DomMessage_Params() | 266 ViewHostMsg_DomMessage_Params::ViewHostMsg_DomMessage_Params() |
267 : request_id(0), | 267 : request_id(0), |
268 has_callback(false), | 268 has_callback(false), |
269 user_gesture(false) { | 269 user_gesture(false) { |
270 } | 270 } |
271 | 271 |
272 ViewHostMsg_DomMessage_Params::~ViewHostMsg_DomMessage_Params() { | 272 ViewHostMsg_DomMessage_Params::~ViewHostMsg_DomMessage_Params() { |
273 } | 273 } |
274 | 274 |
| 275 ViewHostMsg_MalwareDOMDetails_Node::ViewHostMsg_MalwareDOMDetails_Node() { |
| 276 } |
| 277 |
| 278 ViewHostMsg_MalwareDOMDetails_Node::~ViewHostMsg_MalwareDOMDetails_Node() { |
| 279 } |
| 280 |
| 281 ViewHostMsg_MalwareDOMDetails_Params::ViewHostMsg_MalwareDOMDetails_Params() { |
| 282 } |
| 283 |
| 284 ViewHostMsg_MalwareDOMDetails_Params::~ViewHostMsg_MalwareDOMDetails_Params() { |
| 285 } |
| 286 |
275 ViewMsg_ExtensionLoaded_Params::ViewMsg_ExtensionLoaded_Params() { | 287 ViewMsg_ExtensionLoaded_Params::ViewMsg_ExtensionLoaded_Params() { |
276 } | 288 } |
277 | 289 |
278 ViewMsg_ExtensionLoaded_Params::~ViewMsg_ExtensionLoaded_Params() { | 290 ViewMsg_ExtensionLoaded_Params::~ViewMsg_ExtensionLoaded_Params() { |
279 } | 291 } |
280 | 292 |
281 ViewMsg_ExtensionLoaded_Params::ViewMsg_ExtensionLoaded_Params( | 293 ViewMsg_ExtensionLoaded_Params::ViewMsg_ExtensionLoaded_Params( |
282 const ViewMsg_ExtensionLoaded_Params& other) | 294 const ViewMsg_ExtensionLoaded_Params& other) |
283 : manifest(other.manifest->DeepCopy()), | 295 : manifest(other.manifest->DeepCopy()), |
284 location(other.location), | 296 location(other.location), |
(...skipping 1405 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1690 l->append(", "); | 1702 l->append(", "); |
1691 LogParam(p.tag_name, l); | 1703 LogParam(p.tag_name, l); |
1692 l->append(", "); | 1704 l->append(", "); |
1693 LogParam(p.parent, l); | 1705 LogParam(p.parent, l); |
1694 l->append(", "); | 1706 l->append(", "); |
1695 LogParam(p.children, l); | 1707 LogParam(p.children, l); |
1696 l->append(")"); | 1708 l->append(")"); |
1697 } | 1709 } |
1698 | 1710 |
1699 } // namespace IPC | 1711 } // namespace IPC |
OLD | NEW |