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

Unified Diff: components/policy/core/common/cloud/mock_device_management_service.h

Issue 666133002: Standardize usage of virtual/override/final in components/ (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: components/policy/core/common/cloud/mock_device_management_service.h
diff --git a/components/policy/core/common/cloud/mock_device_management_service.h b/components/policy/core/common/cloud/mock_device_management_service.h
index 84e3e83ac19f44c04d44a083c5c607f0689b86f1..7cc64491a59959d53ff6dda0c40d04bf3deefaee 100644
--- a/components/policy/core/common/cloud/mock_device_management_service.h
+++ b/components/policy/core/common/cloud/mock_device_management_service.h
@@ -29,11 +29,11 @@ class MockDeviceManagementServiceConfiguration
MockDeviceManagementServiceConfiguration();
explicit MockDeviceManagementServiceConfiguration(
const std::string& server_url);
- virtual ~MockDeviceManagementServiceConfiguration();
+ ~MockDeviceManagementServiceConfiguration() override;
- virtual std::string GetServerUrl() override;
- virtual std::string GetAgentParameter() override;
- virtual std::string GetPlatformParameter() override;
+ std::string GetServerUrl() override;
+ std::string GetAgentParameter() override;
+ std::string GetPlatformParameter() override;
private:
const std::string server_url_;

Powered by Google App Engine
This is Rietveld 408576698