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

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

Issue 7464009: Removal of Profile from content part 1. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: works now Created 9 years, 5 months 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
OLDNEW
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/ui/browser.h" 9 #include "chrome/browser/ui/browser.h"
9 #include "content/browser/tab_contents/navigation_controller.h" 10 #include "content/browser/tab_contents/navigation_controller.h"
10 #include "content/browser/tab_contents/navigation_entry.h" 11 #include "content/browser/tab_contents/navigation_entry.h"
11 12
12 // TabNavigation -------------------------------------------------------------- 13 // TabNavigation --------------------------------------------------------------
13 14
14 TabNavigation::TabNavigation() 15 TabNavigation::TabNavigation()
15 : transition_(PageTransition::TYPED), 16 : transition_(PageTransition::TYPED),
16 type_mask_(0), 17 type_mask_(0),
17 index_(-1) { 18 index_(-1) {
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 123
123 // SyncedSession -------------------------------------------------------------- 124 // SyncedSession --------------------------------------------------------------
124 125
125 SyncedSession::SyncedSession() : session_tag("invalid") { 126 SyncedSession::SyncedSession() : session_tag("invalid") {
126 } 127 }
127 128
128 SyncedSession::~SyncedSession() { 129 SyncedSession::~SyncedSession() {
129 STLDeleteElements(&windows); 130 STLDeleteElements(&windows);
130 } 131 }
131 132
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698