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

Side by Side Diff: chrome/browser/remoting/remoting_options_handler.cc

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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "chrome/browser/remoting/remoting_options_handler.h"
6
7 #include "app/l10n_util.h"
8 #include "base/utf_string_conversions.h"
9 #include "base/values.h"
10 #include "chrome/common/remoting/chromoting_host_info.h"
11 #include "chrome/browser/dom_ui/dom_ui.h"
12 #include "chrome/browser/service/service_process_control_manager.h"
13 #include "grit/generated_resources.h"
14
15 namespace remoting {
16
17 RemotingOptionsHandler::RemotingOptionsHandler()
18 : dom_ui_(NULL),
19 process_control_(NULL) {
20 }
21
22 RemotingOptionsHandler::~RemotingOptionsHandler() {
23 if (process_control_)
24 process_control_->RemoveMessageHandler(this);
25 }
26
27 void RemotingOptionsHandler::Init(DOMUI* dom_ui) {
28 dom_ui_ = dom_ui;
29
30 process_control_ =
31 ServiceProcessControlManager::GetInstance()->GetProcessControl(
32 dom_ui_->GetProfile());
33 process_control_->AddMessageHandler(this);
34
35 if (!process_control_->RequestRemotingHostStatus()) {
36 // Assume that host is not started if we can't request status.
37 SetStatus(false, "");
38 }
39 }
40
41 // ServiceProcessControl::MessageHandler interface
42 void RemotingOptionsHandler::OnRemotingHostInfo(
43 const remoting::ChromotingHostInfo& host_info) {
44 SetStatus(host_info.enabled, host_info.login);
45 }
46
47 void RemotingOptionsHandler::SetStatus(
48 bool enabled, const std::string& login) {
49 string16 status;
50 if (enabled) {
51 status = l10n_util::GetStringFUTF16(IDS_REMOTING_STATUS_ENABLED_TEXT,
52 UTF8ToUTF16(login));
53 } else {
54 status = l10n_util::GetStringUTF16(IDS_REMOTING_STATUS_DISABLED_TEXT);
55 }
56
57 FundamentalValue enabled_value(enabled);
58 StringValue status_value(status);
59 dom_ui_->CallJavascriptFunction(L"options.AdvancedOptions.SetRemotingStatus",
60 enabled_value, status_value);
61 }
62
63 } // namespace remoting
OLDNEW
« no previous file with comments | « chrome/browser/remoting/remoting_options_handler.h ('k') | chrome/browser/resources/options/advanced_options.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698