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

Unified Diff: Source/core/loader/EmptyClients.cpp

Issue 1229743005: Fix virtual/override/final usage in Source/core/{fetch,loader,streams,xmlhttprequest}/. (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
« no previous file with comments | « Source/core/loader/EmptyClients.h ('k') | Source/core/loader/FrameFetchContext.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/loader/EmptyClients.cpp
diff --git a/Source/core/loader/EmptyClients.cpp b/Source/core/loader/EmptyClients.cpp
index 0a79e34ee061806f5227b390bbc1ce9507d10fef..990fd3c71144b98dff6c519020d7ea11c6d75837 100644
--- a/Source/core/loader/EmptyClients.cpp
+++ b/Source/core/loader/EmptyClients.cpp
@@ -62,10 +62,10 @@ void fillWithEmptyClients(Page::PageClients& pageClients)
class EmptyPopupMenu : public PopupMenu {
public:
- virtual void show(const FloatQuad&, const IntSize&, int) override { }
- virtual void hide() override { }
- virtual void updateFromElement() override { }
- virtual void disconnectClient() override { }
+ void show(const FloatQuad&, const IntSize&, int) override { }
+ void hide() override { }
+ void updateFromElement() override { }
+ void disconnectClient() override { }
};
PassRefPtrWillBeRawPtr<PopupMenu> EmptyChromeClient::openPopupMenu(LocalFrame&, PopupMenuClient*)
« no previous file with comments | « Source/core/loader/EmptyClients.h ('k') | Source/core/loader/FrameFetchContext.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698