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

Unified Diff: Source/modules/serviceworkers/ServiceWorker.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/ServiceWorker.h
diff --git a/Source/modules/serviceworkers/ServiceWorker.h b/Source/modules/serviceworkers/ServiceWorker.h
index 615a7260943aff7bf4d15dea750c4872c739adda..f4be4f5a072b994aa411c4717c5728ecc2674263 100644
--- a/Source/modules/serviceworkers/ServiceWorker.h
+++ b/Source/modules/serviceworkers/ServiceWorker.h
@@ -68,10 +68,10 @@ public:
DEFINE_ATTRIBUTE_EVENT_LISTENER(statechange);
// WebServiceWorkerProxy overrides.
- virtual void dispatchStateChangeEvent() override;
+ void dispatchStateChangeEvent() override;
// AbstractWorker overrides.
- virtual const AtomicString& interfaceName() const override;
+ const AtomicString& interfaceName() const override;
void internalsTerminate();
private:
@@ -79,8 +79,8 @@ private:
ServiceWorker(ExecutionContext*, PassOwnPtr<WebServiceWorker>);
// ActiveDOMObject overrides.
- virtual bool hasPendingActivity() const override;
- virtual void stop() override;
+ bool hasPendingActivity() const override;
+ void stop() override;
OwnPtr<WebServiceWorker> m_outerWorker;
bool m_wasStopped;
« no previous file with comments | « Source/modules/serviceworkers/RespondWithObserver.cpp ('k') | Source/modules/serviceworkers/ServiceWorkerContainer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698