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

Unified Diff: Source/web/WebDOMActivityLogger.cpp

Issue 634893002: Replace OVERRIDE and FINAL with override and final in WebKit/public (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/web/ValidationMessageClientImpl.h ('k') | Source/web/WebDataSourceImpl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/WebDOMActivityLogger.cpp
diff --git a/Source/web/WebDOMActivityLogger.cpp b/Source/web/WebDOMActivityLogger.cpp
index 01f3d5684cd6bb6a63563fded57fb04ab6e010d2..9d1c664170a0336b70ae1ef2d7bb8113bd72d9ed 100644
--- a/Source/web/WebDOMActivityLogger.cpp
+++ b/Source/web/WebDOMActivityLogger.cpp
@@ -47,22 +47,22 @@ public:
{
}
- virtual void logGetter(const String& apiName) OVERRIDE
+ virtual void logGetter(const String& apiName) override
{
m_domActivityLogger->logGetter(WebString(apiName), getURL(), getTitle());
}
- virtual void logSetter(const String& apiName, const v8::Handle<v8::Value>& newValue) OVERRIDE
+ virtual void logSetter(const String& apiName, const v8::Handle<v8::Value>& newValue) override
{
m_domActivityLogger->logSetter(WebString(apiName), newValue, getURL(), getTitle());
}
- virtual void logMethod(const String& apiName, int argc, const v8::Handle<v8::Value>* argv) OVERRIDE
+ virtual void logMethod(const String& apiName, int argc, const v8::Handle<v8::Value>* argv) override
{
m_domActivityLogger->logMethod(WebString(apiName), argc, argv, getURL(), getTitle());
}
- virtual void logEvent(const String& eventName, int argc, const String* argv) OVERRIDE
+ virtual void logEvent(const String& eventName, int argc, const String* argv) override
{
Vector<WebString> webStringArgv;
for (int i = 0; i < argc; i++)
« no previous file with comments | « Source/web/ValidationMessageClientImpl.h ('k') | Source/web/WebDataSourceImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698