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

Unified Diff: Source/web/tests/FrameTestHelpers.cpp

Issue 1230533002: Fix virtual/override/final usage in Source/web/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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/web/tests/FrameTestHelpers.h ('k') | Source/web/tests/PinchViewportTest.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/tests/FrameTestHelpers.cpp
diff --git a/Source/web/tests/FrameTestHelpers.cpp b/Source/web/tests/FrameTestHelpers.cpp
index 3603e90486dc9923e7e1167fdb07194fcea5e5c4..62232f33dfd0534703f96db2701ae80f44a7113d 100644
--- a/Source/web/tests/FrameTestHelpers.cpp
+++ b/Source/web/tests/FrameTestHelpers.cpp
@@ -79,7 +79,7 @@ public:
{
}
- virtual void run() override
+ void run() override
{
Platform::current()->unitTestSupport()->serveAsynchronousMockedRequests();
if (m_client->isLoading())
@@ -106,7 +106,7 @@ public:
{
}
- virtual void run() override
+ void run() override
{
m_frame->loadRequest(m_request);
}
@@ -125,7 +125,7 @@ public:
{
}
- virtual void run() override
+ void run() override
{
m_frame->loadHTMLString(WebData(m_html.data(), m_html.size()), m_baseURL);
}
@@ -146,7 +146,7 @@ public:
{
}
- virtual void run() override
+ void run() override
{
m_frame->loadHistoryItem(m_item, m_loadType, m_cachePolicy);
}
@@ -166,7 +166,7 @@ public:
{
}
- virtual void run() override
+ void run() override
{
m_frame->reload(m_ignoreCache);
}
« no previous file with comments | « Source/web/tests/FrameTestHelpers.h ('k') | Source/web/tests/PinchViewportTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698