1 // Copyright 2013 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.
5 #ifndef REMOTING_HOST_SETUP_DAEMON_CONTROLLER_DELEGATE_WIN_H_
6 #define REMOTING_HOST_SETUP_DAEMON_CONTROLLER_DELEGATE_WIN_H_
8 #include "remoting/host/setup/daemon_controller.h"
12 class DaemonInstallerWin
;
14 class DaemonControllerDelegateWin
: public DaemonController::Delegate
{
16 DaemonControllerDelegateWin();
17 ~DaemonControllerDelegateWin() override
;
19 // DaemonController::Delegate interface.
20 DaemonController::State
GetState() override
;
21 scoped_ptr
<base::DictionaryValue
> GetConfig() override
;
22 void SetConfigAndStart(
23 scoped_ptr
<base::DictionaryValue
> config
,
25 const DaemonController::CompletionCallback
& done
) override
;
27 scoped_ptr
<base::DictionaryValue
> config
,
28 const DaemonController::CompletionCallback
& done
) override
;
29 void Stop(const DaemonController::CompletionCallback
& done
) override
;
30 DaemonController::UsageStatsConsent
GetUsageStatsConsent() override
;
32 DISALLOW_COPY_AND_ASSIGN(DaemonControllerDelegateWin
);
35 } // namespace remoting
37 #endif // REMOTING_HOST_SETUP_DAEMON_CONTROLLER_DELEGATE_WIN_H_