| Index: sky/engine/web/WebViewImpl.h
|
| diff --git a/sky/engine/web/WebViewImpl.h b/sky/engine/web/WebViewImpl.h
|
| index f5e1dd31038fd1a376be0f7d80b085da89bdf918..2b510d96c2a1a9d2a57881075391e08f6df0ad68 100644
|
| --- a/sky/engine/web/WebViewImpl.h
|
| +++ b/sky/engine/web/WebViewImpl.h
|
| @@ -46,7 +46,6 @@
|
| #include "public/web/WebView.h"
|
| #include "web/ChromeClientImpl.h"
|
| #include "web/EditorClientImpl.h"
|
| -#include "web/PageOverlayList.h"
|
| #include "web/PageWidgetDelegate.h"
|
| #include "web/SpellCheckerClientImpl.h"
|
| #include "wtf/OwnPtr.h"
|
| @@ -173,8 +172,6 @@ public:
|
| unsigned inactiveBackgroundColor,
|
| unsigned inactiveForegroundColor) override;
|
| virtual void extractSmartClipData(WebRect, WebString&, WebString&, WebRect&) override;
|
| - virtual void addPageOverlay(WebPageOverlay*, int /* zOrder */) override;
|
| - virtual void removePageOverlay(WebPageOverlay*) override;
|
| virtual void transferActiveWheelFlingAnimation(const WebActiveWheelFlingParameters&) override;
|
| virtual bool endActiveFlingAnimation() override;
|
| virtual void setShowPaintRects(bool) override;
|
| @@ -197,8 +194,6 @@ public:
|
|
|
| Color baseBackgroundColor() const { return m_baseBackgroundColor; }
|
|
|
| - PageOverlayList* pageOverlays() const { return m_pageOverlays.get(); }
|
| -
|
| void setOverlayLayer(GraphicsLayer*);
|
|
|
| const WebPoint& lastMouseDownPoint() const
|
| @@ -445,8 +440,6 @@ private:
|
| // current drop target in this WebView (the drop target can accept the drop).
|
| WebDragOperation m_dragOperation;
|
|
|
| - OwnPtr<PageOverlayList> m_pageOverlays;
|
| -
|
| // Whether the webview is rendering transparently.
|
| bool m_isTransparent;
|
|
|
|
|