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

Unified Diff: chrome/browser/resources/settings/lifetime_browser_proxy.js

Issue 2353513005: MD Settings: Fix restart buttons for Chrome OS (Closed)
Patch Set: Created 4 years, 3 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/resources/settings/lifetime_browser_proxy.js
diff --git a/chrome/browser/resources/settings/lifetime_browser_proxy.js b/chrome/browser/resources/settings/lifetime_browser_proxy.js
index 1d16ccf93d22e5301535bc25f15c4c78b7e3e6ac..4598a800fd2bba3824bc2eb8db233c088ee762dd 100644
--- a/chrome/browser/resources/settings/lifetime_browser_proxy.js
+++ b/chrome/browser/resources/settings/lifetime_browser_proxy.js
@@ -15,7 +15,7 @@ cr.define('settings', function() {
<if expr="chromeos">
// First signs out current user and then performs a restart.
- logOutAndRestart: function() {},
+ signOutAndRestart: function() {},
// Triggers a factory reset.
factoryReset: function() {},
@@ -42,8 +42,8 @@ cr.define('settings', function() {
<if expr="chromeos">
/** @override */
- logOutAndRestart: function() {
- chrome.send('logOutAndRestart');
+ signOutAndRestart: function() {
+ chrome.send('signOutAndRestart');
},
/** @override */

Powered by Google App Engine
This is Rietveld 408576698