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

Unified Diff: Source/web/tests/WebPluginContainerTest.cpp

Issue 1230533002: Fix virtual/override/final usage in Source/web/. (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/web/tests/WebHelperPluginTest.cpp ('k') | Source/web/tests/WebViewTest.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/tests/WebPluginContainerTest.cpp
diff --git a/Source/web/tests/WebPluginContainerTest.cpp b/Source/web/tests/WebPluginContainerTest.cpp
index ab664c0ffc5e3a6e539b779de91fd0ac4026c559..42733f4f78ed465429f9f3ee73bbacaae1360e09 100644
--- a/Source/web/tests/WebPluginContainerTest.cpp
+++ b/Source/web/tests/WebPluginContainerTest.cpp
@@ -295,7 +295,7 @@ public:
{
}
- virtual bool handleInputEvent(const WebInputEvent& event, WebCursorInfo&) override
+ bool handleInputEvent(const WebInputEvent& event, WebCursorInfo&) override
{
m_lastEventType = event.type;
return true;
@@ -307,7 +307,7 @@ private:
};
class EventTestPluginWebFrameClient : public FrameTestHelpers::TestWebFrameClient {
- virtual WebPlugin* createPlugin(WebLocalFrame* frame, const WebPluginParams& params) override
+ WebPlugin* createPlugin(WebLocalFrame* frame, const WebPluginParams& params) override
{
if (params.mimeType == WebString::fromUTF8("application/x-webkit-test-webplugin"))
return new EventTestPlugin(frame, params);
« no previous file with comments | « Source/web/tests/WebHelperPluginTest.cpp ('k') | Source/web/tests/WebViewTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698