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

Unified Diff: Source/core/loader/appcache/ApplicationCache.h

Issue 638503003: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/loader (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/core/loader/WorkerThreadableLoader.h ('k') | Source/core/loader/appcache/ApplicationCacheHost.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/loader/appcache/ApplicationCache.h
diff --git a/Source/core/loader/appcache/ApplicationCache.h b/Source/core/loader/appcache/ApplicationCache.h
index ddd5d5dde536216ac6121355f2cfa06b3bac2fae..47c7b3c5a452f5b75fd818dcac8d507650d55bdb 100644
--- a/Source/core/loader/appcache/ApplicationCache.h
+++ b/Source/core/loader/appcache/ApplicationCache.h
@@ -39,7 +39,7 @@ namespace blink {
class ExceptionState;
class LocalFrame;
-class ApplicationCache FINAL : public RefCountedWillBeGarbageCollectedFinalized<ApplicationCache>, public EventTargetWithInlineData, public DOMWindowProperty {
+class ApplicationCache final : public RefCountedWillBeGarbageCollectedFinalized<ApplicationCache>, public EventTargetWithInlineData, public DOMWindowProperty {
DEFINE_WRAPPERTYPEINFO();
REFCOUNTED_EVENT_TARGET(ApplicationCache);
WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(ApplicationCache);
@@ -55,7 +55,7 @@ public:
#endif
}
- virtual void willDestroyGlobalObjectInFrame() OVERRIDE;
+ virtual void willDestroyGlobalObjectInFrame() override;
unsigned short status() const;
void update(ExceptionState&);
@@ -73,12 +73,12 @@ public:
DEFINE_ATTRIBUTE_EVENT_LISTENER(cached);
DEFINE_ATTRIBUTE_EVENT_LISTENER(obsolete);
- virtual const AtomicString& interfaceName() const OVERRIDE;
- virtual ExecutionContext* executionContext() const OVERRIDE;
+ virtual const AtomicString& interfaceName() const override;
+ virtual ExecutionContext* executionContext() const override;
static const AtomicString& toEventType(ApplicationCacheHost::EventID);
- virtual void trace(Visitor*) OVERRIDE;
+ virtual void trace(Visitor*) override;
private:
explicit ApplicationCache(LocalFrame*);
« no previous file with comments | « Source/core/loader/WorkerThreadableLoader.h ('k') | Source/core/loader/appcache/ApplicationCacheHost.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698