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

Unified Diff: Source/core/frame/Console.h

Issue 635853002: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/frame (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/frame/BarProp.h ('k') | Source/core/frame/DOMTimer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/frame/Console.h
diff --git a/Source/core/frame/Console.h b/Source/core/frame/Console.h
index 39b76f993a4dfcc6b2ae493f524ebada95cf89e2..936caf6bfebdeb304ea4437f42c24a725ed90614 100644
--- a/Source/core/frame/Console.h
+++ b/Source/core/frame/Console.h
@@ -41,7 +41,7 @@ namespace blink {
class LocalFrame;
class MemoryInfo;
-class Console FINAL : public ConsoleBase, public DOMWindowProperty {
+class Console final : public ConsoleBase, public DOMWindowProperty {
DEFINE_WRAPPERTYPEINFO();
WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(Console);
public:
@@ -53,11 +53,11 @@ public:
PassRefPtrWillBeRawPtr<MemoryInfo> memory() const;
- virtual void trace(Visitor*) OVERRIDE;
+ virtual void trace(Visitor*) override;
protected:
- virtual ExecutionContext* context() OVERRIDE;
- virtual void reportMessageToConsole(PassRefPtrWillBeRawPtr<ConsoleMessage>) OVERRIDE;
+ virtual ExecutionContext* context() override;
+ virtual void reportMessageToConsole(PassRefPtrWillBeRawPtr<ConsoleMessage>) override;
private:
explicit Console(LocalFrame*);
« no previous file with comments | « Source/core/frame/BarProp.h ('k') | Source/core/frame/DOMTimer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698