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

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

Issue 1232333002: Fix virtual/override/final usage in the rest of Source/core/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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
« no previous file with comments | « Source/core/fileapi/FileReaderLoader.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 5424dcb79d1ae933a1828165fa1d30469bfbdf12..17aadc96d3bb81cc1e1d1771c0e0b6e1b6a15731 100644
--- a/Source/core/frame/Console.h
+++ b/Source/core/frame/Console.h
@@ -49,13 +49,13 @@ public:
{
return new Console(frame);
}
- virtual ~Console();
+ ~Console() override;
DECLARE_VIRTUAL_TRACE();
protected:
- virtual ExecutionContext* context() override;
- virtual void reportMessageToConsole(PassRefPtrWillBeRawPtr<ConsoleMessage>) override;
+ ExecutionContext* context() override;
+ void reportMessageToConsole(PassRefPtrWillBeRawPtr<ConsoleMessage>) override;
private:
explicit Console(LocalFrame*);
« no previous file with comments | « Source/core/fileapi/FileReaderLoader.h ('k') | Source/core/frame/DOMTimer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698