| 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 "chrome/browser/sessions/session_types.h" | 5 #include "chrome/browser/sessions/session_types.h" |
| 6 | 6 |
| 7 #include "base/string_util.h" | 7 #include "base/string_util.h" |
| 8 #include "chrome/browser/profiles/profile.h" | 8 #include "chrome/browser/profiles/profile.h" |
| 9 #include "chrome/browser/ui/browser.h" | 9 #include "chrome/browser/ui/browser.h" |
| 10 #include "content/browser/tab_contents/navigation_controller.h" | 10 #include "content/browser/tab_contents/navigation_controller.h" |
| 11 #include "content/browser/tab_contents/navigation_entry.h" | 11 #include "content/browser/tab_contents/navigation_entry.h" |
| 12 | 12 |
| 13 // TabNavigation -------------------------------------------------------------- | 13 // TabNavigation -------------------------------------------------------------- |
| 14 | 14 |
| 15 TabNavigation::TabNavigation() | 15 TabNavigation::TabNavigation() |
| 16 : transition_(content::PAGE_TRANSITION_TYPED), | 16 : transition_(content::PAGE_TRANSITION_TYPED), |
| 17 type_mask_(0), | 17 type_mask_(0), |
| 18 index_(-1) { | 18 index_(-1) { |
| 19 } | 19 } |
| 20 | 20 |
| 21 TabNavigation::TabNavigation(int index, | 21 TabNavigation::TabNavigation(int index, |
| 22 const GURL& virtual_url, | 22 const GURL& virtual_url, |
| 23 const GURL& referrer, | 23 const content::Referrer& referrer, |
| 24 const string16& title, | 24 const string16& title, |
| 25 const std::string& state, | 25 const std::string& state, |
| 26 content::PageTransition transition) | 26 content::PageTransition transition) |
| 27 : virtual_url_(virtual_url), | 27 : virtual_url_(virtual_url), |
| 28 referrer_(referrer), | 28 referrer_(referrer), |
| 29 title_(title), | 29 title_(title), |
| 30 state_(state), | 30 state_(state), |
| 31 transition_(transition), | 31 transition_(transition), |
| 32 type_mask_(0), | 32 type_mask_(0), |
| 33 index_(index) { | 33 index_(index) { |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 116 SessionWindow::SessionWindow() | 116 SessionWindow::SessionWindow() |
| 117 : selected_tab_index(-1), | 117 : selected_tab_index(-1), |
| 118 type(Browser::TYPE_TABBED), | 118 type(Browser::TYPE_TABBED), |
| 119 is_constrained(true), | 119 is_constrained(true), |
| 120 show_state(ui::SHOW_STATE_DEFAULT) { | 120 show_state(ui::SHOW_STATE_DEFAULT) { |
| 121 } | 121 } |
| 122 | 122 |
| 123 SessionWindow::~SessionWindow() { | 123 SessionWindow::~SessionWindow() { |
| 124 STLDeleteElements(&tabs); | 124 STLDeleteElements(&tabs); |
| 125 } | 125 } |
| OLD | NEW |