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

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

Issue 1140813003: NTP Zombie Code Slayer III, The Saga Continues: Foreign Sessions (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@suggestions-page
Patch Set: Created 5 years, 7 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
Index: chrome/browser/ui/webui/history_ui.cc
diff --git a/chrome/browser/ui/webui/history_ui.cc b/chrome/browser/ui/webui/history_ui.cc
index ca2612eddfc0255c19faed4466596e0d9df77fb0..26b2b5ac0cf04c64e0700a9503ca94f9157e2c8b 100644
--- a/chrome/browser/ui/webui/history_ui.cc
+++ b/chrome/browser/ui/webui/history_ui.cc
@@ -74,7 +74,7 @@
#endif
#if !defined(OS_ANDROID) && !defined(OS_IOS)
-#include "chrome/browser/ui/webui/ntp/foreign_session_handler.h"
+#include "chrome/browser/ui/webui/foreign_session_handler.h"
#include "chrome/browser/ui/webui/ntp/ntp_login_handler.h"
#endif
@@ -128,12 +128,12 @@ content::WebUIDataSource* CreateHistoryUIHTMLSource(Profile* profile) {
content::WebUIDataSource::Create(chrome::kChromeUIHistoryFrameHost);
source->AddBoolean("isUserSignedIn", is_authenticated);
source->AddLocalizedString("collapseSessionMenuItemText",
- IDS_NEW_TAB_OTHER_SESSIONS_COLLAPSE_SESSION);
+ IDS_HISTORY_OTHER_SESSIONS_COLLAPSE_SESSION);
source->AddLocalizedString("expandSessionMenuItemText",
- IDS_NEW_TAB_OTHER_SESSIONS_EXPAND_SESSION);
+ IDS_HISTORY_OTHER_SESSIONS_EXPAND_SESSION);
source->AddLocalizedString("restoreSessionMenuItemText",
- IDS_NEW_TAB_OTHER_SESSIONS_OPEN_ALL);
- source->AddLocalizedString("xMore", IDS_OTHER_DEVICES_X_MORE);
+ IDS_HISTORY_OTHER_SESSIONS_OPEN_ALL);
+ source->AddLocalizedString("xMore", IDS_HISTORY_OTHER_DEVICES_X_MORE);
source->AddLocalizedString("loading", IDS_HISTORY_LOADING);
source->AddLocalizedString("title", IDS_HISTORY_TITLE);
source->AddLocalizedString("newest", IDS_HISTORY_NEWEST);
« no previous file with comments | « chrome/browser/ui/webui/foreign_session_handler.cc ('k') | chrome/browser/ui/webui/ntp/foreign_session_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698