| 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.
|
|
|