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

Unified Diff: Source/web/WebKit.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/WebHelperPluginImpl.h ('k') | Source/web/WebLeakDetector.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/WebKit.cpp
diff --git a/Source/web/WebKit.cpp b/Source/web/WebKit.cpp
index ec818aa0e91449ab10a54db40ed1e14194962057..996c62e81789bc578b4f7d43a9ee4cefce8a803f 100644
--- a/Source/web/WebKit.cpp
+++ b/Source/web/WebKit.cpp
@@ -71,11 +71,11 @@ namespace {
class EndOfTaskRunner : public WebThread::TaskObserver {
public:
- virtual void willProcessTask() override
+ void willProcessTask() override
{
AnimationClock::notifyTaskStart();
}
- virtual void didProcessTask() override
+ void didProcessTask() override
{
Microtask::performCheckpoint(mainThreadIsolate());
V8GCController::reportDOMMemoryUsageToV8(mainThreadIsolate());
« no previous file with comments | « Source/web/WebHelperPluginImpl.h ('k') | Source/web/WebLeakDetector.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698