| 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 93f805653292a613e3cc88f2c9e31bbb1b6a2616..1e9e20425a6430bf66f3f9f72fed27f8e9c76e2b 100644
|
| --- a/chrome/browser/resources/md_history/app.js
|
| +++ b/chrome/browser/resources/md_history/app.js
|
| @@ -222,6 +222,17 @@ Polymer({
|
| },
|
|
|
| /**
|
| + * Update sign in state of synced device manager after user logs in or out.
|
| + * @param {boolean} isUserSignedIn
|
| + */
|
| + updateSignInState: function(isUserSignedIn) {
|
| + var syncedDeviceManagerElem =
|
| + /** @type {HistorySyncedDeviceManagerElement} */this
|
| + .$$('history-synced-device-manager');
|
| + syncedDeviceManagerElem.updateSignInState(isUserSignedIn);
|
| + },
|
| +
|
| + /**
|
| * @param {string} selectedPage
|
| * @return {boolean}
|
| * @private
|
|
|