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

Unified Diff: Source/modules/serviceworkers/Headers.cpp

Issue 630403002: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/modules/serviceworkers (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/modules/serviceworkers/Headers.h ('k') | Source/modules/serviceworkers/InstallEvent.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/serviceworkers/Headers.cpp
diff --git a/Source/modules/serviceworkers/Headers.cpp b/Source/modules/serviceworkers/Headers.cpp
index 2eea7e7e799be147d45bd9d7e0f284e5f56278a4..13fc176e09835b1bd1cf529acfe1c8a1c49259d5 100644
--- a/Source/modules/serviceworkers/Headers.cpp
+++ b/Source/modules/serviceworkers/Headers.cpp
@@ -19,7 +19,7 @@ namespace blink {
namespace {
-class HeadersIterator FINAL : public Iterator {
+class HeadersIterator final : public Iterator {
public:
// Only KeyValue is currently used; the other types are to support
// Map-like iteration with entries(), keys() and values(), but this has
@@ -28,7 +28,7 @@ public:
HeadersIterator(FetchHeaderList* headers, IterationType type) : m_headers(headers), m_type(type), m_current(0) { }
- virtual ScriptValue next(ScriptState* scriptState, ExceptionState& exception) OVERRIDE
+ virtual ScriptValue next(ScriptState* scriptState, ExceptionState& exception) override
{
// FIXME: This simply advances an index and returns the next value if
// any, so if the iterated object is mutated values may be skipped.
@@ -54,7 +54,7 @@ public:
return ScriptValue();
}
- virtual ScriptValue next(ScriptState* scriptState, ScriptValue, ExceptionState& exceptionState) OVERRIDE
+ virtual ScriptValue next(ScriptState* scriptState, ScriptValue, ExceptionState& exceptionState) override
{
return next(scriptState, exceptionState);
}
« no previous file with comments | « Source/modules/serviceworkers/Headers.h ('k') | Source/modules/serviceworkers/InstallEvent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698