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

Unified Diff: remoting/host/setup/daemon_controller_delegate_mac.h

Issue 667123002: Standardize usage of virtual/override/final in remoting/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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
« no previous file with comments | « remoting/host/resizing_host_observer_unittest.cc ('k') | remoting/host/setup/host_starter.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/setup/daemon_controller_delegate_mac.h
diff --git a/remoting/host/setup/daemon_controller_delegate_mac.h b/remoting/host/setup/daemon_controller_delegate_mac.h
index 8a881d91801ddad77f31b3591a333d87901623f5..ec69d32c5aa953c029069265fbc2b4bb9988f7a6 100644
--- a/remoting/host/setup/daemon_controller_delegate_mac.h
+++ b/remoting/host/setup/daemon_controller_delegate_mac.h
@@ -14,24 +14,22 @@ namespace remoting {
class DaemonControllerDelegateMac : public DaemonController::Delegate {
public:
DaemonControllerDelegateMac();
- virtual ~DaemonControllerDelegateMac();
+ ~DaemonControllerDelegateMac() override;
// DaemonController::Delegate interface.
- virtual DaemonController::State GetState() override;
- virtual scoped_ptr<base::DictionaryValue> GetConfig() override;
- virtual void InstallHost(
- const DaemonController::CompletionCallback& done) override;
- virtual void SetConfigAndStart(
+ DaemonController::State GetState() override;
+ scoped_ptr<base::DictionaryValue> GetConfig() override;
+ void InstallHost(const DaemonController::CompletionCallback& done) override;
+ void SetConfigAndStart(
scoped_ptr<base::DictionaryValue> config,
bool consent,
const DaemonController::CompletionCallback& done) override;
- virtual void UpdateConfig(
- scoped_ptr<base::DictionaryValue> config,
- const DaemonController::CompletionCallback& done) override;
- virtual void Stop(const DaemonController::CompletionCallback& done) override;
- virtual void SetWindow(void* window_handle) override;
- virtual std::string GetVersion() override;
- virtual DaemonController::UsageStatsConsent GetUsageStatsConsent() override;
+ void UpdateConfig(scoped_ptr<base::DictionaryValue> config,
+ const DaemonController::CompletionCallback& done) override;
+ void Stop(const DaemonController::CompletionCallback& done) override;
+ void SetWindow(void* window_handle) override;
+ std::string GetVersion() override;
+ DaemonController::UsageStatsConsent GetUsageStatsConsent() override;
private:
void ShowPreferencePane(const std::string& config_data,
« no previous file with comments | « remoting/host/resizing_host_observer_unittest.cc ('k') | remoting/host/setup/host_starter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698