| Index: chrome/browser/extensions/api/system_private/system_private_api.h
|
| diff --git a/chrome/browser/extensions/api/system_private/system_private_api.h b/chrome/browser/extensions/api/system_private/system_private_api.h
|
| index e0d8d4c567f490cd395474f888788fa8f0839fb3..bebd362f774e94dda35ef2c84309d3de9701d3f9 100644
|
| --- a/chrome/browser/extensions/api/system_private/system_private_api.h
|
| +++ b/chrome/browser/extensions/api/system_private/system_private_api.h
|
| @@ -22,7 +22,7 @@ class SystemPrivateGetIncognitoModeAvailabilityFunction
|
| virtual ~SystemPrivateGetIncognitoModeAvailabilityFunction() {}
|
|
|
| // ExtensionFunction:
|
| - virtual bool RunSync() OVERRIDE;
|
| + virtual bool RunSync() override;
|
| };
|
|
|
| // API function which returns the status of system update.
|
| @@ -36,7 +36,7 @@ class SystemPrivateGetUpdateStatusFunction
|
| virtual ~SystemPrivateGetUpdateStatusFunction() {}
|
|
|
| // ExtensionFunction:
|
| - virtual bool RunSync() OVERRIDE;
|
| + virtual bool RunSync() override;
|
| };
|
|
|
| // API function which returns the Google API key.
|
| @@ -48,7 +48,7 @@ class SystemPrivateGetApiKeyFunction : public SyncExtensionFunction {
|
| virtual ~SystemPrivateGetApiKeyFunction() {}
|
|
|
| // ExtensionFunction:
|
| - virtual bool RunSync() OVERRIDE;
|
| + virtual bool RunSync() override;
|
| };
|
|
|
| // Dispatches systemPrivate.onBrightnessChanged event for extensions.
|
|
|