| 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++) {
|
|
|