| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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/browser/tab_contents/navigation_details.h" | 5 #include "content/browser/tab_contents/navigation_details.h" |
| 6 | 6 |
| 7 namespace content { | 7 namespace content { |
| 8 | 8 |
| 9 LoadCommittedDetails::LoadCommittedDetails() | 9 LoadCommittedDetails::LoadCommittedDetails() |
| 10 : entry(NULL), | 10 : entry(NULL), |
| 11 type(NavigationType::UNKNOWN), | 11 type(NavigationType::UNKNOWN), |
| 12 previous_entry_index(-1), | 12 previous_entry_index(-1), |
| 13 is_auto(false), | |
| 14 did_replace_entry(false), | 13 did_replace_entry(false), |
| 15 is_in_page(false), | 14 is_in_page(false), |
| 16 is_main_frame(true), | 15 is_main_frame(true), |
| 17 http_status_code(0) { | 16 http_status_code(0) { |
| 18 } | 17 } |
| 19 | 18 |
| 20 } // namespace content | 19 } // namespace content |
| OLD | NEW |