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

Unified Diff: Source/modules/serviceworkers/ServiceWorkerMessageEvent.h

Issue 1227783004: Fix virtual/override/final usage in Source/modules/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase 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
Index: Source/modules/serviceworkers/ServiceWorkerMessageEvent.h
diff --git a/Source/modules/serviceworkers/ServiceWorkerMessageEvent.h b/Source/modules/serviceworkers/ServiceWorkerMessageEvent.h
index 2891df6377132a73e7a4e2636ed89091c06a2470..832e66b2abd22f091ca59a9b99f4562b8e485e3a 100644
--- a/Source/modules/serviceworkers/ServiceWorkerMessageEvent.h
+++ b/Source/modules/serviceworkers/ServiceWorkerMessageEvent.h
@@ -31,7 +31,7 @@ public:
return adoptRefWillBeNoop(new ServiceWorkerMessageEvent(data, String(), String(), source, ports));
}
- virtual ~ServiceWorkerMessageEvent();
+ ~ServiceWorkerMessageEvent() override;
ScriptValue data() const { return m_data; }
SerializedScriptValue* serializedData() const { return m_serializedData.get(); }
@@ -41,7 +41,7 @@ public:
MessagePortArray ports() const;
void source(ServiceWorkerOrMessagePort& result) const;
- virtual const AtomicString& interfaceName() const override;
+ const AtomicString& interfaceName() const override;
DECLARE_VIRTUAL_TRACE();
« no previous file with comments | « Source/modules/serviceworkers/ServiceWorkerGlobalScope.h ('k') | Source/modules/serviceworkers/ServiceWorkerRegistration.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698