Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(531)

Side by Side Diff: chrome/browser/sessions/session_types.cc

Issue 5104002: Cleanup: Include browser.h -> ui/browser.h [Part 4]. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 10 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/sessions/session_service.h ('k') | chrome/browser/show_options_url.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 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/browser.h"
9 #include "chrome/browser/tab_contents/navigation_controller.h" 8 #include "chrome/browser/tab_contents/navigation_controller.h"
10 #include "chrome/browser/tab_contents/navigation_entry.h" 9 #include "chrome/browser/tab_contents/navigation_entry.h"
10 #include "chrome/browser/ui/browser.h"
11 11
12 // TabNavigation -------------------------------------------------------------- 12 // TabNavigation --------------------------------------------------------------
13 13
14 TabNavigation::TabNavigation() 14 TabNavigation::TabNavigation()
15 : transition_(PageTransition::TYPED), 15 : transition_(PageTransition::TYPED),
16 type_mask_(0), 16 type_mask_(0),
17 index_(-1) { 17 index_(-1) {
18 } 18 }
19 19
20 TabNavigation::TabNavigation(int index, 20 TabNavigation::TabNavigation(int index,
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 110
111 // ForeignSession -------------------------------------------------------------- 111 // ForeignSession --------------------------------------------------------------
112 112
113 ForeignSession::ForeignSession() : foreign_session_tag("invalid") { 113 ForeignSession::ForeignSession() : foreign_session_tag("invalid") {
114 } 114 }
115 115
116 ForeignSession::~ForeignSession() { 116 ForeignSession::~ForeignSession() {
117 STLDeleteElements(&windows); 117 STLDeleteElements(&windows);
118 } 118 }
119 119
OLDNEW
« no previous file with comments | « chrome/browser/sessions/session_service.h ('k') | chrome/browser/show_options_url.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698