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

Unified Diff: chrome/browser/resources/md_history/history.js

Issue 2517243002: [Sync] Removing complexity around PROXY_TABS now that empty sessions are provided when disabled. (Closed)
Patch Set: Reverted ios change. Created 4 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
Index: chrome/browser/resources/md_history/history.js
diff --git a/chrome/browser/resources/md_history/history.js b/chrome/browser/resources/md_history/history.js
index 522e8f9b32adc214841785c03666f0e42515827b..cecf8082d530aee6c53c551d6d31f54da3001819 100644
--- a/chrome/browser/resources/md_history/history.js
+++ b/chrome/browser/resources/md_history/history.js
@@ -68,16 +68,14 @@ function showNotification(
/**
* Receives the synced history data. An empty list means that either there are
* no foreign sessions, or tab sync is disabled for this profile.
- * |isTabSyncEnabled| makes it possible to distinguish between the cases.
*
* @param {!Array<!ForeignSession>} sessionList Array of objects describing the
* sessions from other devices.
- * @param {boolean} isTabSyncEnabled Is tab sync enabled for this profile?
*/
-function setForeignSessions(sessionList, isTabSyncEnabled) {
+function setForeignSessions(sessionList) {
waitForAppUpgrade().then(function() {
/** @type {HistoryAppElement} */($('history-app'))
- .setForeignSessions(sessionList, isTabSyncEnabled);
+ .setForeignSessions(sessionList);
});
}

Powered by Google App Engine
This is Rietveld 408576698