OLD | NEW |
(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 |
OLD | NEW |