| Index: remoting/host/setup/daemon_controller_delegate_win.h
|
| diff --git a/remoting/host/setup/daemon_controller_delegate_win.h b/remoting/host/setup/daemon_controller_delegate_win.h
|
| index f2aafc44bf1a1b4ff808cfcc337382817c152fd0..d10fc349760cc49ccc344eb2dfafee2b151af276 100644
|
| --- a/remoting/host/setup/daemon_controller_delegate_win.h
|
| +++ b/remoting/host/setup/daemon_controller_delegate_win.h
|
| @@ -19,14 +19,13 @@ class DaemonControllerDelegateWin : public DaemonController::Delegate {
|
|
|
| // DaemonController::Delegate interface.
|
| DaemonController::State GetState() override;
|
| - scoped_ptr<base::DictionaryValue> GetConfig() override;
|
| + std::unique_ptr<base::DictionaryValue> GetConfig() override;
|
| void SetConfigAndStart(
|
| - scoped_ptr<base::DictionaryValue> config,
|
| + std::unique_ptr<base::DictionaryValue> config,
|
| bool consent,
|
| const DaemonController::CompletionCallback& done) override;
|
| - void UpdateConfig(
|
| - scoped_ptr<base::DictionaryValue> config,
|
| - const DaemonController::CompletionCallback& done) override;
|
| + void UpdateConfig(std::unique_ptr<base::DictionaryValue> config,
|
| + const DaemonController::CompletionCallback& done) override;
|
| void Stop(const DaemonController::CompletionCallback& done) override;
|
| DaemonController::UsageStatsConsent GetUsageStatsConsent() override;
|
|
|
|
|