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

Unified Diff: components/policy/core/common/cloud/device_management_service.cc

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/device_management_service.cc
diff --git a/components/policy/core/common/cloud/device_management_service.cc b/components/policy/core/common/cloud/device_management_service.cc
index b05cda75a2b61a015f03fb2818095c5c81dbff76..50aa706b05bcacb4db2c2a4264f74363d6743a14 100644
--- a/components/policy/core/common/cloud/device_management_service.cc
+++ b/components/policy/core/common/cloud/device_management_service.cc
@@ -142,7 +142,7 @@ class DeviceManagementRequestJobImpl : public DeviceManagementRequestJob {
const std::string& platform_parameter,
DeviceManagementService* service,
const scoped_refptr<net::URLRequestContextGetter>& request_context);
- virtual ~DeviceManagementRequestJobImpl();
+ ~DeviceManagementRequestJobImpl() override;
// Handles the URL request response.
void HandleResponse(const net::URLRequestStatus& status,
@@ -166,7 +166,7 @@ class DeviceManagementRequestJobImpl : public DeviceManagementRequestJob {
protected:
// DeviceManagementRequestJob:
- virtual void Run() override;
+ void Run() override;
private:
// Invokes the callback with the given error code.

Powered by Google App Engine
This is Rietveld 408576698