Index: sandbox/win/src/broker_services.h |
diff --git a/sandbox/win/src/broker_services.h b/sandbox/win/src/broker_services.h |
index ba189f41f836ae2909805a8e4491c8e8d3a12418..76011e51a88e04cc5cd05c52393af146306f5ccf 100644 |
--- a/sandbox/win/src/broker_services.h |
+++ b/sandbox/win/src/broker_services.h |
@@ -37,7 +37,7 @@ class PolicyBase; |
// of the associated TargetProcess interface. In this implementation |
// TargetProcess is a friend of BrokerServices where the later manages a |
// collection of the former. |
-class BrokerServicesBase FINAL : public BrokerServices, |
+class BrokerServicesBase final : public BrokerServices, |
public SingletonBase<BrokerServicesBase> { |
public: |
BrokerServicesBase(); |
@@ -45,17 +45,17 @@ class BrokerServicesBase FINAL : public BrokerServices, |
~BrokerServicesBase(); |
// BrokerServices interface. |
- virtual ResultCode Init() OVERRIDE; |
- virtual TargetPolicy* CreatePolicy() OVERRIDE; |
+ virtual ResultCode Init() override; |
+ virtual TargetPolicy* CreatePolicy() override; |
virtual ResultCode SpawnTarget(const wchar_t* exe_path, |
const wchar_t* command_line, |
TargetPolicy* policy, |
- PROCESS_INFORMATION* target) OVERRIDE; |
- virtual ResultCode WaitForAllTargets() OVERRIDE; |
- virtual ResultCode AddTargetPeer(HANDLE peer_process) OVERRIDE; |
+ PROCESS_INFORMATION* target) override; |
+ virtual ResultCode WaitForAllTargets() override; |
+ virtual ResultCode AddTargetPeer(HANDLE peer_process) override; |
virtual ResultCode InstallAppContainer(const wchar_t* sid, |
- const wchar_t* name) OVERRIDE; |
- virtual ResultCode UninstallAppContainer(const wchar_t* sid) OVERRIDE; |
+ const wchar_t* name) override; |
+ virtual ResultCode UninstallAppContainer(const wchar_t* sid) override; |
// Checks if the supplied process ID matches one of the broker's active |
// target processes |