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

Side by Side Diff: remoting/host/setup/daemon_controller_delegate_win.h

Issue 1101033002: Update {virtual,override} to follow C++11 style in remoting. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 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 unified diff | Download patch
« no previous file with comments | « remoting/host/sas_injector_win.cc ('k') | remoting/host/setup/me2me_native_messaging_host.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef REMOTING_HOST_SETUP_DAEMON_CONTROLLER_DELEGATE_WIN_H_ 5 #ifndef REMOTING_HOST_SETUP_DAEMON_CONTROLLER_DELEGATE_WIN_H_
6 #define REMOTING_HOST_SETUP_DAEMON_CONTROLLER_DELEGATE_WIN_H_ 6 #define REMOTING_HOST_SETUP_DAEMON_CONTROLLER_DELEGATE_WIN_H_
7 7
8 #include "remoting/host/setup/daemon_controller.h" 8 #include "remoting/host/setup/daemon_controller.h"
9 9
10 namespace remoting { 10 namespace remoting {
11 11
12 class DaemonInstallerWin; 12 class DaemonInstallerWin;
13 13
14 class DaemonControllerDelegateWin : public DaemonController::Delegate { 14 class DaemonControllerDelegateWin : public DaemonController::Delegate {
15 public: 15 public:
16 DaemonControllerDelegateWin(); 16 DaemonControllerDelegateWin();
17 virtual ~DaemonControllerDelegateWin(); 17 ~DaemonControllerDelegateWin() override;
18 18
19 // DaemonController::Delegate interface. 19 // DaemonController::Delegate interface.
20 virtual DaemonController::State GetState() override; 20 DaemonController::State GetState() override;
21 virtual scoped_ptr<base::DictionaryValue> GetConfig() override; 21 scoped_ptr<base::DictionaryValue> GetConfig() override;
22 virtual void SetConfigAndStart( 22 void SetConfigAndStart(
23 scoped_ptr<base::DictionaryValue> config, 23 scoped_ptr<base::DictionaryValue> config,
24 bool consent, 24 bool consent,
25 const DaemonController::CompletionCallback& done) override; 25 const DaemonController::CompletionCallback& done) override;
26 virtual void UpdateConfig( 26 void UpdateConfig(
27 scoped_ptr<base::DictionaryValue> config, 27 scoped_ptr<base::DictionaryValue> config,
28 const DaemonController::CompletionCallback& done) override; 28 const DaemonController::CompletionCallback& done) override;
29 virtual void Stop(const DaemonController::CompletionCallback& done) override; 29 void Stop(const DaemonController::CompletionCallback& done) override;
30 virtual DaemonController::UsageStatsConsent GetUsageStatsConsent() override; 30 DaemonController::UsageStatsConsent GetUsageStatsConsent() override;
31 31
32 DISALLOW_COPY_AND_ASSIGN(DaemonControllerDelegateWin); 32 DISALLOW_COPY_AND_ASSIGN(DaemonControllerDelegateWin);
33 }; 33 };
34 34
35 } // namespace remoting 35 } // namespace remoting
36 36
37 #endif // REMOTING_HOST_SETUP_DAEMON_CONTROLLER_DELEGATE_WIN_H_ 37 #endif // REMOTING_HOST_SETUP_DAEMON_CONTROLLER_DELEGATE_WIN_H_
OLDNEW
« no previous file with comments | « remoting/host/sas_injector_win.cc ('k') | remoting/host/setup/me2me_native_messaging_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698