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

Unified Diff: chrome/browser/chromeos/settings/session_manager_operation.h

Issue 851123003: Update {virtual,override,final} to follow C++11 style in chrome/browser/chromeos/settings. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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: chrome/browser/chromeos/settings/session_manager_operation.h
diff --git a/chrome/browser/chromeos/settings/session_manager_operation.h b/chrome/browser/chromeos/settings/session_manager_operation.h
index 6c3fe0c50120a5a9d6d6272e60b2b0c03b193e70..6a9af8edb046f05e767c54209e873a0e084aeb6f 100644
--- a/chrome/browser/chromeos/settings/session_manager_operation.h
+++ b/chrome/browser/chromeos/settings/session_manager_operation.h
@@ -127,11 +127,11 @@ class LoadSettingsOperation : public SessionManagerOperation {
public:
// Creates a new load operation.
explicit LoadSettingsOperation(const Callback& callback);
- virtual ~LoadSettingsOperation();
+ ~LoadSettingsOperation() override;
protected:
// SessionManagerOperation:
- virtual void Run() override;
+ void Run() override;
private:
DISALLOW_COPY_AND_ASSIGN(LoadSettingsOperation);
@@ -145,11 +145,11 @@ class StoreSettingsOperation : public SessionManagerOperation {
StoreSettingsOperation(
const Callback& callback,
scoped_ptr<enterprise_management::PolicyFetchResponse> policy);
- virtual ~StoreSettingsOperation();
+ ~StoreSettingsOperation() override;
protected:
// SessionManagerOperation:
- virtual void Run() override;
+ void Run() override;
private:
// Handles the result of the store operation and triggers the load.

Powered by Google App Engine
This is Rietveld 408576698