summaryrefslogtreecommitdiff
path: root/Source/WebKit/win/Plugins/PluginView.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebKit/win/Plugins/PluginView.h')
-rw-r--r--Source/WebKit/win/Plugins/PluginView.h40
1 files changed, 20 insertions, 20 deletions
diff --git a/Source/WebKit/win/Plugins/PluginView.h b/Source/WebKit/win/Plugins/PluginView.h
index dfdae16f2..6a61e7445 100644
--- a/Source/WebKit/win/Plugins/PluginView.h
+++ b/Source/WebKit/win/Plugins/PluginView.h
@@ -185,36 +185,36 @@ namespace WebCore {
void pushPopupsEnabledState(bool state);
void popPopupsEnabledState();
- virtual void invalidateRect(const IntRect&);
+ void invalidateRect(const IntRect&) override;
bool arePopupsAllowed() const;
- void setJavaScriptPaused(bool);
+ void setJavaScriptPaused(bool) override;
- void privateBrowsingStateChanged(bool);
+ void privateBrowsingStateChanged(bool) override;
void disconnectStream(PluginStream*);
- void streamDidFinishLoading(PluginStream* stream) { disconnectStream(stream); }
+ void streamDidFinishLoading(PluginStream* stream) override { disconnectStream(stream); }
// Widget functions
- virtual void setFrameRect(const IntRect&);
- virtual void frameRectsChanged();
- virtual void setFocus(bool);
- virtual void show();
- virtual void hide();
- virtual void paint(GraphicsContext&, const IntRect&);
- virtual void clipRectChanged() override;
+ void setFrameRect(const IntRect&) override;
+ void frameRectsChanged() override;
+ void setFocus(bool) override;
+ void show() override;
+ void hide() override;
+ void paint(GraphicsContext&, const IntRect&) override;
+ void clipRectChanged() override;
// This method is used by plugins on all platforms to obtain a clip rect that includes clips set by WebCore,
// e.g., in overflow:auto sections. The clip rects coordinates are in the containing window's coordinate space.
// This clip includes any clips that the widget itself sets up for its children.
IntRect windowClipRect() const;
- virtual void handleEvent(Event*);
- virtual void setParent(ScrollView*);
- virtual void setParentVisible(bool);
+ void handleEvent(Event*) override;
+ void setParent(ScrollView*) override;
+ void setParentVisible(bool) override;
- virtual bool isPluginView() const override { return true; }
+ bool isPluginView() const override { return true; }
Frame* parentFrame() const { return m_parentFrame.get(); }
@@ -235,10 +235,10 @@ namespace WebCore {
#endif
// Used for manual loading
- void didReceiveResponse(const ResourceResponse&);
- void didReceiveData(const char*, int);
- void didFinishLoading();
- void didFail(const ResourceError&);
+ void didReceiveResponse(const ResourceResponse&) override;
+ void didReceiveData(const char*, int) override;
+ void didFinishLoading() override;
+ void didFail(const ResourceError&) override;
static bool isCallingPlugin();
@@ -279,7 +279,7 @@ namespace WebCore {
void invalidateWindowlessPluginRect(const IntRect&);
- virtual void mediaCanStart();
+ void mediaCanStart() override;
#if OS(WINDOWS) && ENABLE(NETSCAPE_PLUGIN_API)
void paintWindowedPluginIntoContext(GraphicsContext&, const IntRect&);