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

Unified Diff: chrome/browser/sessions/tab_restore_service.cc

Issue 10669038: base: Remove dereference structure operator (i.e ->) from ScopedVector. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 8 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/sessions/session_service_unittest.cc ('k') | chrome/installer/util/installer_state.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/sessions/tab_restore_service.cc
diff --git a/chrome/browser/sessions/tab_restore_service.cc b/chrome/browser/sessions/tab_restore_service.cc
index 04a3f3471fd50e6c7501c2db3c37844426efe6a4..84640203ac8242766a9281e89098c41f27706d32 100644
--- a/chrome/browser/sessions/tab_restore_service.cc
+++ b/chrome/browser/sessions/tab_restore_service.cc
@@ -864,7 +864,7 @@ void TabRestoreService::CreateEntriesFromCommands(
current_window = new Window();
current_window->selected_tab_index = payload.selected_tab_index;
current_window->timestamp = Time::FromInternalValue(payload.timestamp);
- entries->push_back(current_window);
+ entries.push_back(current_window);
id_to_entry[payload.window_id] = current_window;
break;
}
@@ -897,7 +897,7 @@ void TabRestoreService::CreateEntriesFromCommands(
current_tab = new Tab();
id_to_entry[payload.id] = current_tab;
current_tab->timestamp = Time::FromInternalValue(payload.timestamp);
- entries->push_back(current_tab);
+ entries.push_back(current_tab);
}
current_tab->current_navigation_index = payload.index;
break;
« no previous file with comments | « chrome/browser/sessions/session_service_unittest.cc ('k') | chrome/installer/util/installer_state.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698