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

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

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.h
diff --git a/chrome/browser/remoting/setup_flow_start_host_step.h b/chrome/browser/remoting/setup_flow_start_host_step.h
deleted file mode 100644
index 2780ad77ac7de9f5d6f3d9674e0041df71463011..0000000000000000000000000000000000000000
--- a/chrome/browser/remoting/setup_flow_start_host_step.h
+++ /dev/null
@@ -1,60 +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.
-
-#ifndef CHROME_BROWSER_REMOTING_SETUP_FLOW_START_HOST_STEP_H_
-#define CHROME_BROWSER_REMOTING_SETUP_FLOW_START_HOST_STEP_H_
-
-#include "chrome/browser/remoting/setup_flow.h"
-#include "chrome/browser/service/service_process_control.h"
-#include "chrome/common/net/gaia/gaia_auth_consumer.h"
-#include "chrome/common/net/gaia/gaia_auth_fetcher.h"
-
-namespace remoting {
-
-// SetupFlowStartHostStep is the final step in the remoting setup
-// flow. It starts the chromoting hosts and then requests current
-// state to verify that it was started successfully.
-class SetupFlowStartHostStep : public SetupFlowStepBase,
- public ServiceProcessControl::MessageHandler {
- public:
- SetupFlowStartHostStep();
- virtual ~SetupFlowStartHostStep();
-
- // SetupFlowStep implementation.
- virtual void HandleMessage(const std::string& message, const Value* arg);
- virtual void Cancel();
-
- // ServiceProcessControl::MessageHandler interface
- virtual void OnRemotingHostInfo(
- const remoting::ChromotingHostInfo& host_info);
-
- protected:
- virtual void DoStart();
-
- private:
- void RequestStatus();
-
- ScopedRunnableMethodFactory<SetupFlowStartHostStep> task_factory_;
- ServiceProcessControl* process_control_;
- bool status_requested_;
-
- DISALLOW_COPY_AND_ASSIGN(SetupFlowStartHostStep);
-};
-
-class SetupFlowStartHostErrorStep : public SetupFlowErrorStepBase {
- public:
- SetupFlowStartHostErrorStep();
- virtual ~SetupFlowStartHostErrorStep();
-
- protected:
- virtual string16 GetErrorMessage();
- virtual void Retry();
-
- private:
- DISALLOW_COPY_AND_ASSIGN(SetupFlowStartHostErrorStep);
-};
-
-} // namespace remoting
-
-#endif // CHROME_BROWSER_REMOTING_SETUP_FLOW_START_HOST_STEP_H_
« no previous file with comments | « chrome/browser/remoting/setup_flow_register_step.cc ('k') | chrome/browser/remoting/setup_flow_start_host_step.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698