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

Unified Diff: Source/modules/quota/StorageErrorCallback.h

Issue 635233004: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/modules (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.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
« no previous file with comments | « Source/modules/quota/NavigatorStorageQuota.h ('k') | Source/modules/quota/StorageInfo.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/quota/StorageErrorCallback.h
diff --git a/Source/modules/quota/StorageErrorCallback.h b/Source/modules/quota/StorageErrorCallback.h
index 1b40da9833c6940535e9068702077cc4bfa05114..78b42bdab348ec5bde2d1aed81e131cf3e359ea9 100644
--- a/Source/modules/quota/StorageErrorCallback.h
+++ b/Source/modules/quota/StorageErrorCallback.h
@@ -48,14 +48,14 @@ public:
virtual void trace(Visitor*) { }
virtual void handleEvent(DOMError*) = 0;
- class CallbackTask FINAL : public ExecutionContextTask {
+ class CallbackTask final : public ExecutionContextTask {
public:
static PassOwnPtr<CallbackTask> create(StorageErrorCallback* callback, ExceptionCode ec)
{
return adoptPtr(new CallbackTask(callback, ec));
}
- virtual void performTask(ExecutionContext*) OVERRIDE;
+ virtual void performTask(ExecutionContext*) override;
private:
CallbackTask(StorageErrorCallback*, ExceptionCode);
« no previous file with comments | « Source/modules/quota/NavigatorStorageQuota.h ('k') | Source/modules/quota/StorageInfo.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698