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

Unified Diff: Source/web/tests/FakeWebPlugin.h

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/WorkerGlobalScopeProxyProviderImpl.h ('k') | Source/web/tests/FrameTestHelpers.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/tests/FakeWebPlugin.h
diff --git a/Source/web/tests/FakeWebPlugin.h b/Source/web/tests/FakeWebPlugin.h
index e1e2ef71e35cdb7ebaff46194db96fea166833b5..173fc53685faa327bd2953c5c2cd87107141215b 100644
--- a/Source/web/tests/FakeWebPlugin.h
+++ b/Source/web/tests/FakeWebPlugin.h
@@ -48,25 +48,25 @@ public:
FakeWebPlugin(WebFrame*, const WebPluginParams&);
// WebPlugin methods:
- virtual bool initialize(WebPluginContainer*) override;
- virtual void destroy() override;
- virtual NPObject* scriptableObject() override { return 0; }
- virtual bool canProcessDrag() const override { return false; }
- virtual void layoutIfNeeded() override { }
- virtual void paint(WebCanvas*, const WebRect&) override { }
- virtual void updateGeometry(const WebRect& clientRect, const WebRect& clipRect, const WebRect& windowClipRect, const WebVector<WebRect>& cutOutsRects, bool isVisible) override { }
- virtual void updateFocus(bool, WebFocusType) override { }
- virtual void updateVisibility(bool) override { }
- virtual bool acceptsInputEvents() override { return true; }
- virtual bool handleInputEvent(const WebInputEvent&, WebCursorInfo&) override { return false; }
- virtual bool handleDragStatusUpdate(WebDragStatus, const WebDragData&, WebDragOperationsMask, const WebPoint& position, const WebPoint& screenPosition) override { return false; }
- virtual void didReceiveResponse(const WebURLResponse&) override { }
- virtual void didReceiveData(const char* data, int dataLength) override { }
- virtual void didFinishLoading() override { }
- virtual void didFailLoading(const WebURLError&) override { }
- virtual void didFinishLoadingFrameRequest(const WebURL&, void* notifyData) override { }
- virtual void didFailLoadingFrameRequest(const WebURL&, void* notifyData, const WebURLError&) override { }
- virtual bool isPlaceholder() override { return false; }
+ bool initialize(WebPluginContainer*) override;
+ void destroy() override;
+ NPObject* scriptableObject() override { return 0; }
+ bool canProcessDrag() const override { return false; }
+ void layoutIfNeeded() override { }
+ void paint(WebCanvas*, const WebRect&) override { }
+ void updateGeometry(const WebRect& clientRect, const WebRect& clipRect, const WebRect& windowClipRect, const WebVector<WebRect>& cutOutsRects, bool isVisible) override { }
+ void updateFocus(bool, WebFocusType) override { }
+ void updateVisibility(bool) override { }
+ bool acceptsInputEvents() override { return true; }
+ bool handleInputEvent(const WebInputEvent&, WebCursorInfo&) override { return false; }
+ bool handleDragStatusUpdate(WebDragStatus, const WebDragData&, WebDragOperationsMask, const WebPoint& position, const WebPoint& screenPosition) override { return false; }
+ void didReceiveResponse(const WebURLResponse&) override { }
+ void didReceiveData(const char* data, int dataLength) override { }
+ void didFinishLoading() override { }
+ void didFailLoading(const WebURLError&) override { }
+ void didFinishLoadingFrameRequest(const WebURL&, void* notifyData) override { }
+ void didFailLoadingFrameRequest(const WebURL&, void* notifyData, const WebURLError&) override { }
+ bool isPlaceholder() override { return false; }
protected:
virtual ~FakeWebPlugin();
« no previous file with comments | « Source/web/WorkerGlobalScopeProxyProviderImpl.h ('k') | Source/web/tests/FrameTestHelpers.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698