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

Unified Diff: chrome/browser/resources/options/advanced_options.js

Issue 6214003: Show remoting host status on the advanced options page. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/remoting/tools
Patch Set: git try Created 9 years, 11 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
« no previous file with comments | « chrome/browser/resources/options/advanced_options.html ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/options/advanced_options.js
diff --git a/chrome/browser/resources/options/advanced_options.js b/chrome/browser/resources/options/advanced_options.js
index 8133d7b0c8268d8fd79d273935e0754005fedd3a..28bd85a1a6f54f3da1cbd703e21414fa3e5f00e2 100644
--- a/chrome/browser/resources/options/advanced_options.js
+++ b/chrome/browser/resources/options/advanced_options.js
@@ -262,6 +262,17 @@ var OptionsPage = options.OptionsPage;
}
};
+ AdvancedOptions.SetRemotingStatus = function(enabled, status) {
+ if (enabled) {
+ $('remotingSetupButton').style.display = 'none';
+ $('remotingStopButton').style.display = 'inline';
+ } else {
+ $('remotingSetupButton').style.display = 'inline';
+ $('remotingStopButton').style.display = 'none';
+ }
+ $('remotingStatus').textContent = status;
+ };
+
AdvancedOptions.RemoveRemotingSection = function() {
var proxySectionElm = $('remoting-section');
proxySectionElm.parentNode.removeChild(proxySectionElm);
« no previous file with comments | « chrome/browser/resources/options/advanced_options.html ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698