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

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

Issue 660803004: Standardize usage of virtual/override/final specifiers. (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
Index: remoting/host/setup/daemon_controller_delegate_linux.h
diff --git a/remoting/host/setup/daemon_controller_delegate_linux.h b/remoting/host/setup/daemon_controller_delegate_linux.h
index 145318ccbecebf16c1a80af14b074efcd0e84bdd..916072c74c1e400cbfdf02ce82b905eb85940ee2 100644
--- a/remoting/host/setup/daemon_controller_delegate_linux.h
+++ b/remoting/host/setup/daemon_controller_delegate_linux.h
@@ -13,24 +13,22 @@ namespace remoting {
class DaemonControllerDelegateLinux : public DaemonController::Delegate {
public:
DaemonControllerDelegateLinux();
- virtual ~DaemonControllerDelegateLinux();
+ ~DaemonControllerDelegateLinux() 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:
DISALLOW_COPY_AND_ASSIGN(DaemonControllerDelegateLinux);
« no previous file with comments | « remoting/host/register_support_host_request_unittest.cc ('k') | remoting/host/setup/me2me_native_messaging_host_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698