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

Unified Diff: sandbox/win/src/broker_services.h

Issue 628233002: replace OVERRIDE and FINAL with override and final in sandbox/ (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 | « sandbox/mac/xpc_message_server_unittest.cc ('k') | sandbox/win/src/sandbox_policy_base.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « sandbox/mac/xpc_message_server_unittest.cc ('k') | sandbox/win/src/sandbox_policy_base.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698