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

Unified Diff: components/policy/core/browser/browser_policy_connector_ios.mm

Issue 840813009: Enable strict-virtual-specifiers for iOS builds. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Review comments Created 5 years, 11 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/browser/browser_policy_connector_ios.mm
diff --git a/components/policy/core/browser/browser_policy_connector_ios.mm b/components/policy/core/browser/browser_policy_connector_ios.mm
index 51d41c57e1288d7df3888b169abc6d59a6ed37ff..247183f5d42044127857be589298ef2b5a11af1a 100644
--- a/components/policy/core/browser/browser_policy_connector_ios.mm
+++ b/components/policy/core/browser/browser_policy_connector_ios.mm
@@ -22,17 +22,15 @@ class DeviceManagementServiceConfiguration
explicit DeviceManagementServiceConfiguration(const std::string& user_agent)
: user_agent_(user_agent) {}
- virtual ~DeviceManagementServiceConfiguration() {}
+ ~DeviceManagementServiceConfiguration() override {}
- virtual std::string GetServerUrl() override {
+ std::string GetServerUrl() override {
return BrowserPolicyConnector::GetDeviceManagementUrl();
}
- virtual std::string GetAgentParameter() override {
- return user_agent_;
- }
+ std::string GetAgentParameter() override { return user_agent_; }
- virtual std::string GetPlatformParameter() override {
+ std::string GetPlatformParameter() override {
std::string os_name = base::SysInfo::OperatingSystemName();
std::string os_hardware = base::SysInfo::OperatingSystemArchitecture();
std::string os_version("-");
« no previous file with comments | « components/policy/core/browser/browser_policy_connector_ios.h ('k') | components/policy/core/common/policy_loader_ios.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698