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

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

Issue 7740055: Set user-visible machine names and devices types for synced sessions. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Fix tests Created 9 years, 3 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/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"
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 SessionWindow::SessionWindow() 113 SessionWindow::SessionWindow()
114 : selected_tab_index(-1), 114 : selected_tab_index(-1),
115 type(Browser::TYPE_TABBED), 115 type(Browser::TYPE_TABBED),
116 is_constrained(true), 116 is_constrained(true),
117 show_state(ui::SHOW_STATE_DEFAULT) { 117 show_state(ui::SHOW_STATE_DEFAULT) {
118 } 118 }
119 119
120 SessionWindow::~SessionWindow() { 120 SessionWindow::~SessionWindow() {
121 STLDeleteElements(&tabs); 121 STLDeleteElements(&tabs);
122 } 122 }
123
124 // SyncedSession --------------------------------------------------------------
125
126 SyncedSession::SyncedSession() : session_tag("invalid") {
127 }
128
129 SyncedSession::~SyncedSession() {
130 STLDeleteElements(&windows);
131 }
132
OLDNEW
« no previous file with comments | « chrome/browser/sessions/session_types.h ('k') | chrome/browser/sync/glue/session_model_associator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698