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

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

Issue 1058123003: Update {virtual,override} to follow C++11 style in sandbox. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: git cl format 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sandbox/linux/seccomp-bpf/bpf_tests.h ('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 76011e51a88e04cc5cd05c52393af146306f5ccf..3e7a1790ee66ecc0fa9478f03c6a685f97fd4439 100644
--- a/sandbox/win/src/broker_services.h
+++ b/sandbox/win/src/broker_services.h
@@ -45,17 +45,17 @@ class BrokerServicesBase final : public BrokerServices,
~BrokerServicesBase();
// BrokerServices interface.
- 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;
- virtual ResultCode InstallAppContainer(const wchar_t* sid,
- const wchar_t* name) override;
- virtual ResultCode UninstallAppContainer(const wchar_t* sid) override;
+ ResultCode Init() override;
+ TargetPolicy* CreatePolicy() override;
+ ResultCode SpawnTarget(const wchar_t* exe_path,
+ const wchar_t* command_line,
+ TargetPolicy* policy,
+ PROCESS_INFORMATION* target) override;
+ ResultCode WaitForAllTargets() override;
+ ResultCode AddTargetPeer(HANDLE peer_process) override;
+ ResultCode InstallAppContainer(const wchar_t* sid,
+ const wchar_t* name) override;
+ 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/linux/seccomp-bpf/bpf_tests.h ('k') | sandbox/win/src/sandbox_policy_base.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698