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

Unified Diff: chrome/browser/extensions/api/autotest_private/autotest_private_api.h

Issue 624153002: replace OVERRIDE and FINAL with override and final in chrome/browser/extensions/ (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: chrome/browser/extensions/api/autotest_private/autotest_private_api.h
diff --git a/chrome/browser/extensions/api/autotest_private/autotest_private_api.h b/chrome/browser/extensions/api/autotest_private/autotest_private_api.h
index daa94d95b27c9fc33f9abef2f38c9d1de69a902c..c70a63f3eb4ed0869a9339ae48d12dc6676995ed 100644
--- a/chrome/browser/extensions/api/autotest_private/autotest_private_api.h
+++ b/chrome/browser/extensions/api/autotest_private/autotest_private_api.h
@@ -19,7 +19,7 @@ class AutotestPrivateLogoutFunction : public ChromeSyncExtensionFunction {
private:
virtual ~AutotestPrivateLogoutFunction() {}
- virtual bool RunSync() OVERRIDE;
+ virtual bool RunSync() override;
};
class AutotestPrivateRestartFunction : public ChromeSyncExtensionFunction {
@@ -28,7 +28,7 @@ class AutotestPrivateRestartFunction : public ChromeSyncExtensionFunction {
private:
virtual ~AutotestPrivateRestartFunction() {}
- virtual bool RunSync() OVERRIDE;
+ virtual bool RunSync() override;
};
class AutotestPrivateShutdownFunction : public ChromeSyncExtensionFunction {
@@ -38,7 +38,7 @@ class AutotestPrivateShutdownFunction : public ChromeSyncExtensionFunction {
private:
virtual ~AutotestPrivateShutdownFunction() {}
- virtual bool RunSync() OVERRIDE;
+ virtual bool RunSync() override;
};
class AutotestPrivateLoginStatusFunction : public ChromeSyncExtensionFunction {
@@ -48,7 +48,7 @@ class AutotestPrivateLoginStatusFunction : public ChromeSyncExtensionFunction {
private:
virtual ~AutotestPrivateLoginStatusFunction() {}
- virtual bool RunSync() OVERRIDE;
+ virtual bool RunSync() override;
};
class AutotestPrivateLockScreenFunction : public ChromeSyncExtensionFunction {
@@ -58,7 +58,7 @@ class AutotestPrivateLockScreenFunction : public ChromeSyncExtensionFunction {
private:
virtual ~AutotestPrivateLockScreenFunction() {}
- virtual bool RunSync() OVERRIDE;
+ virtual bool RunSync() override;
};
class AutotestPrivateGetExtensionsInfoFunction
@@ -69,7 +69,7 @@ class AutotestPrivateGetExtensionsInfoFunction
private:
virtual ~AutotestPrivateGetExtensionsInfoFunction() {}
- virtual bool RunSync() OVERRIDE;
+ virtual bool RunSync() override;
};
class AutotestPrivateSimulateAsanMemoryBugFunction
@@ -80,7 +80,7 @@ class AutotestPrivateSimulateAsanMemoryBugFunction
private:
virtual ~AutotestPrivateSimulateAsanMemoryBugFunction() {}
- virtual bool RunSync() OVERRIDE;
+ virtual bool RunSync() override;
};
// Don't kill the browser when we're in a browser test.

Powered by Google App Engine
This is Rietveld 408576698