| Index: chrome/browser/resources/md_history/app.js
|
| diff --git a/chrome/browser/resources/md_history/app.js b/chrome/browser/resources/md_history/app.js
|
| index 3c26c37faf3a4658a5eb27880b7286d2c164eae3..2a39a590c126be704e4574fc8cbd801048daf089 100644
|
| --- a/chrome/browser/resources/md_history/app.js
|
| +++ b/chrome/browser/resources/md_history/app.js
|
| @@ -266,21 +266,8 @@ Polymer({
|
| /**
|
| * @param {!Array<!ForeignSession>} sessionList Array of objects describing
|
| * the sessions from other devices.
|
| - * @param {boolean} isTabSyncEnabled Is tab sync enabled for this profile?
|
| */
|
| - setForeignSessions: function(sessionList, isTabSyncEnabled) {
|
| - if (!isTabSyncEnabled) {
|
| - var syncedDeviceManagerElem =
|
| - /** @type {HistorySyncedDeviceManagerElement} */this
|
| - .$$('history-synced-device-manager');
|
| - if (syncedDeviceManagerElem) {
|
| - md_history.ensureLazyLoaded().then(function() {
|
| - syncedDeviceManagerElem.tabSyncDisabled();
|
| - });
|
| - }
|
| - return;
|
| - }
|
| -
|
| + setForeignSessions: function(sessionList) {
|
| this.set('queryResult_.sessionList', sessionList);
|
| },
|
|
|
|
|