| Index: components/policy/core/common/policy_loader_win.cc
|
| diff --git a/components/policy/core/common/policy_loader_win.cc b/components/policy/core/common/policy_loader_win.cc
|
| index 3be28f322cf497decb80ef34577b8923cc183880..f223da5e9d3cb7776a620f20f51e5fb040a0ae84 100644
|
| --- a/components/policy/core/common/policy_loader_win.cc
|
| +++ b/components/policy/core/common/policy_loader_win.cc
|
| @@ -285,19 +285,19 @@ class ScopedDisableWow64Redirection {
|
| // AppliedGPOListProvider implementation that calls actual Windows APIs.
|
| class WinGPOListProvider : public AppliedGPOListProvider {
|
| public:
|
| - virtual ~WinGPOListProvider() {}
|
| + ~WinGPOListProvider() override {}
|
|
|
| // AppliedGPOListProvider:
|
| - virtual DWORD GetAppliedGPOList(DWORD flags,
|
| - LPCTSTR machine_name,
|
| - PSID sid_user,
|
| - GUID* extension_guid,
|
| - PGROUP_POLICY_OBJECT* gpo_list) override {
|
| + DWORD GetAppliedGPOList(DWORD flags,
|
| + LPCTSTR machine_name,
|
| + PSID sid_user,
|
| + GUID* extension_guid,
|
| + PGROUP_POLICY_OBJECT* gpo_list) override {
|
| return ::GetAppliedGPOList(flags, machine_name, sid_user, extension_guid,
|
| gpo_list);
|
| }
|
|
|
| - virtual BOOL FreeGPOList(PGROUP_POLICY_OBJECT gpo_list) override {
|
| + BOOL FreeGPOList(PGROUP_POLICY_OBJECT gpo_list) override {
|
| return ::FreeGPOList(gpo_list);
|
| }
|
| };
|
|
|