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

Unified Diff: Source/modules/indexeddb/IDBRequestTest.cpp

Issue 1227783004: Fix virtual/override/final usage in Source/modules/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 5 years, 5 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/indexeddb/IDBRequest.h ('k') | Source/modules/indexeddb/IDBTransaction.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/indexeddb/IDBRequestTest.cpp
diff --git a/Source/modules/indexeddb/IDBRequestTest.cpp b/Source/modules/indexeddb/IDBRequestTest.cpp
index 19174b07637a0df9b184b3a4044e6fcce32fbbfe..a8cf8dd9cc624766c44ce310e7ae722a292bcc1f 100644
--- a/Source/modules/indexeddb/IDBRequestTest.cpp
+++ b/Source/modules/indexeddb/IDBRequestTest.cpp
@@ -58,13 +58,13 @@ public:
{
}
- virtual void SetUp() override
+ void SetUp() override
{
m_executionContext = adoptRefWillBeNoop(new NullExecutionContext());
m_scope.scriptState()->setExecutionContext(m_executionContext.get());
}
- virtual void TearDown() override
+ void TearDown() override
{
m_executionContext->notifyContextDestroyed();
m_scope.scriptState()->setExecutionContext(nullptr);
@@ -121,16 +121,16 @@ public:
{
return adoptPtr(new MockWebIDBDatabase());
}
- virtual ~MockWebIDBDatabase()
+ ~MockWebIDBDatabase() override
{
EXPECT_TRUE(m_closeCalled);
}
- virtual void close() override
+ void close() override
{
m_closeCalled = true;
}
- virtual void abort(long long transactionId) override { }
+ void abort(long long transactionId) override { }
private:
MockWebIDBDatabase()
« no previous file with comments | « Source/modules/indexeddb/IDBRequest.h ('k') | Source/modules/indexeddb/IDBTransaction.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698