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

Unified Diff: chrome/browser/remoting/setup_flow_start_host_step.cc

Issue 6955010: Remove the Remoting Host component from Chrome. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove an errant include. Created 9 years, 7 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/remoting/setup_flow_start_host_step.cc
diff --git a/chrome/browser/remoting/setup_flow_start_host_step.cc b/chrome/browser/remoting/setup_flow_start_host_step.cc
deleted file mode 100644
index 015213814857031e7aa381a37c1bbd2cc6c13a84..0000000000000000000000000000000000000000
--- a/chrome/browser/remoting/setup_flow_start_host_step.cc
+++ /dev/null
@@ -1,87 +0,0 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "chrome/browser/remoting/setup_flow_start_host_step.h"
-
-#include "chrome/browser/remoting/setup_flow_get_status_step.h"
-#include "chrome/browser/service/service_process_control.h"
-#include "chrome/browser/service/service_process_control_manager.h"
-#include "grit/generated_resources.h"
-#include "ui/base/l10n/l10n_util.h"
-
-namespace remoting {
-
-SetupFlowStartHostStep::SetupFlowStartHostStep()
- : ALLOW_THIS_IN_INITIALIZER_LIST(task_factory_(this)),
- status_requested_(false) {
-}
-
-SetupFlowStartHostStep::~SetupFlowStartHostStep() {
- if (process_control_)
- process_control_->RemoveMessageHandler(this);
-}
-
-void SetupFlowStartHostStep::HandleMessage(const std::string& message,
- const Value* arg) {
-}
-
-void SetupFlowStartHostStep::Cancel() {
- if (process_control_)
- process_control_->RemoveMessageHandler(this);
-}
-
-void SetupFlowStartHostStep::OnRemotingHostInfo(
- const remoting::ChromotingHostInfo& host_info) {
- if (status_requested_) {
- status_requested_ = false;
- if (host_info.enabled) {
- FinishStep(new SetupFlowDoneStep());
- } else {
- FinishStep(new SetupFlowStartHostErrorStep());
- }
- }
-}
-
-void SetupFlowStartHostStep::DoStart() {
- flow()->web_ui()->CallJavascriptFunction("showSettingUp");
-
- process_control_ =
- ServiceProcessControlManager::GetInstance()->GetProcessControl(
- flow()->profile());
- if (!process_control_ || !process_control_->is_connected()) {
- FinishStep(new SetupFlowStartHostErrorStep());
- }
-
- process_control_->SetRemotingHostCredentials(flow()->context()->login,
- flow()->context()->talk_token);
- process_control_->EnableRemotingHost();
- RequestStatus();
-}
-
-void SetupFlowStartHostStep::RequestStatus() {
- DCHECK(!status_requested_);
-
- if (!process_control_->RequestRemotingHostStatus()) {
- FinishStep(new SetupFlowStartHostErrorStep());
- return;
- }
-
- status_requested_ = true;
- process_control_->AddMessageHandler(this);
-}
-
-SetupFlowStartHostErrorStep::SetupFlowStartHostErrorStep() { }
-SetupFlowStartHostErrorStep::~SetupFlowStartHostErrorStep() { }
-
-string16 SetupFlowStartHostErrorStep::GetErrorMessage() {
- return l10n_util::GetStringUTF16(IDS_REMOTING_SERVICE_PROCESS_FAILED_MESSAGE);
-}
-
-void SetupFlowStartHostErrorStep::Retry() {
- // When retrying we retry from the GetStatus step because it may be
- // necessary to start service process.
- FinishStep(new SetupFlowGetStatusStep());
-}
-
-} // namespace remoting
« no previous file with comments | « chrome/browser/remoting/setup_flow_start_host_step.h ('k') | chrome/browser/resources/options/advanced_options.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698