Index: Source/core/frame/Console.h |
diff --git a/Source/core/frame/Console.h b/Source/core/frame/Console.h |
index 0cac1a60b02afb700296d985cc764dc8b478bd68..3b65af938a29f0a7db2e6c8270ff21b83f03bc43 100644 |
--- a/Source/core/frame/Console.h |
+++ b/Source/core/frame/Console.h |
@@ -44,7 +44,7 @@ class MemoryInfo; |
class Page; |
class ScriptArguments; |
-class Console : public RefCounted<Console>, public ConsoleBase, public ScriptWrappable, public DOMWindowProperty { |
+class Console FINAL : public RefCounted<Console>, public ConsoleBase, public ScriptWrappable, public DOMWindowProperty { |
public: |
using RefCounted<Console>::ref; |
using RefCounted<Console>::deref; |
@@ -55,14 +55,14 @@ public: |
PassRefPtr<MemoryInfo> memory() const; |
protected: |
- virtual ExecutionContext* context(); |
+ virtual ExecutionContext* context() OVERRIDE; |
virtual void reportMessageToClient(MessageLevel, const String& message, PassRefPtr<ScriptCallStack>) OVERRIDE; |
private: |
explicit Console(Frame*); |
- virtual void refConsole() { ref(); } |
- virtual void derefConsole() { deref(); } |
+ virtual void refConsole() OVERRIDE { ref(); } |
+ virtual void derefConsole() OVERRIDE { deref(); } |
}; |
} // namespace WebCore |