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" | |
8 #include "chrome/common/common_param_traits.h" | 7 #include "chrome/common/common_param_traits.h" |
9 #include "chrome/common/extensions/extension_constants.h" | 8 #include "chrome/common/extensions/extension_constants.h" |
10 #include "chrome/common/render_messages.h" | 9 #include "chrome/common/render_messages.h" |
11 #include "net/base/upload_data.h" | 10 #include "net/base/upload_data.h" |
12 | 11 |
13 ViewMsg_Navigate_Params::ViewMsg_Navigate_Params() | 12 ViewMsg_Navigate_Params::ViewMsg_Navigate_Params() |
14 : page_id(-1), | 13 : page_id(-1), |
15 pending_history_list_offset(-1), | 14 pending_history_list_offset(-1), |
16 current_history_list_offset(-1), | 15 current_history_list_offset(-1), |
17 current_history_list_length(0), | 16 current_history_list_length(0), |
(...skipping 1547 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1565 l->append(", "); | 1564 l->append(", "); |
1566 LogParam(p.tag_name, l); | 1565 LogParam(p.tag_name, l); |
1567 l->append(", "); | 1566 l->append(", "); |
1568 LogParam(p.parent, l); | 1567 LogParam(p.parent, l); |
1569 l->append(", "); | 1568 l->append(", "); |
1570 LogParam(p.children, l); | 1569 LogParam(p.children, l); |
1571 l->append(")"); | 1570 l->append(")"); |
1572 } | 1571 } |
1573 | 1572 |
1574 } // namespace IPC | 1573 } // namespace IPC |
OLD | NEW |