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

Unified Diff: chrome/browser/ui/webui/sessions_ui.cc

Issue 8590031: Added machine names to about:sessions. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed quotation marks. Created 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/resources/sessions.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/webui/sessions_ui.cc
diff --git a/chrome/browser/ui/webui/sessions_ui.cc b/chrome/browser/ui/webui/sessions_ui.cc
index e6f4f837b686d8f8dba9436409ca447ab9181bf6..946fc47f598f60f49a9d491bfb15fd8a3dfe3be0 100644
--- a/chrome/browser/ui/webui/sessions_ui.cc
+++ b/chrome/browser/ui/webui/sessions_ui.cc
@@ -184,6 +184,7 @@ void SessionsDOMHandler::GetSessionList(
const browser_sync::SyncedSession* session = *it;
scoped_ptr<DictionaryValue> session_data(new DictionaryValue());
session_data->SetString("tag", session->session_tag);
+ session_data->SetString("name", session->session_name);
scoped_ptr<ListValue> window_list(new ListValue());
GetWindowList(session->windows, window_list.get());
session_data->Set("windows", window_list.release());
« no previous file with comments | « chrome/browser/resources/sessions.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698