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

Unified Diff: Source/web/tests/ActivityLoggerTest.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/WorkerPermissionClient.h ('k') | Source/web/tests/FakeWebPlugin.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/tests/ActivityLoggerTest.cpp
diff --git a/Source/web/tests/ActivityLoggerTest.cpp b/Source/web/tests/ActivityLoggerTest.cpp
index 3193ba104f1f5594fb5b3e4aac1bd544c12f409c..b760ae117e302736668dfaee5d42d9ab4495eb02 100644
--- a/Source/web/tests/ActivityLoggerTest.cpp
+++ b/Source/web/tests/ActivityLoggerTest.cpp
@@ -24,17 +24,17 @@ class TestActivityLogger : public V8DOMActivityLogger {
public:
virtual ~TestActivityLogger() { }
- void logGetter(const String& apiName) OVERRIDE
+ void logGetter(const String& apiName) override
{
m_loggedActivities.append(apiName);
}
- void logSetter(const String& apiName, const v8::Handle<v8::Value>& newValue) OVERRIDE
+ void logSetter(const String& apiName, const v8::Handle<v8::Value>& newValue) override
{
m_loggedActivities.append(apiName + " | " + toCoreStringWithUndefinedOrNullCheck(newValue));
}
- void logMethod(const String& apiName, int argc, const v8::Handle<v8::Value>* argv) OVERRIDE
+ void logMethod(const String& apiName, int argc, const v8::Handle<v8::Value>* argv) override
{
String activityString = apiName;
for (int i = 0; i < argc; i++)
@@ -42,7 +42,7 @@ public:
m_loggedActivities.append(activityString);
}
- void logEvent(const String& eventName, int argc, const String* argv) OVERRIDE
+ void logEvent(const String& eventName, int argc, const String* argv) override
{
String activityString = eventName;
for (int i = 0; i < argc; i++) {
« no previous file with comments | « Source/web/WorkerPermissionClient.h ('k') | Source/web/tests/FakeWebPlugin.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698