| Index: Source/web/ChromeClientImpl.h
|
| diff --git a/Source/web/ChromeClientImpl.h b/Source/web/ChromeClientImpl.h
|
| index 45faa38c286e79280d0cee6947ac179cfd8121e0..aad47d03d3ceff60fe0183554ed6cf538526be3a 100644
|
| --- a/Source/web/ChromeClientImpl.h
|
| +++ b/Source/web/ChromeClientImpl.h
|
| @@ -138,6 +138,7 @@ public:
|
| // ChromeClientImpl:
|
| void setCursorForPlugin(const WebCursorInfo&);
|
| void setNewWindowNavigationPolicy(WebNavigationPolicy);
|
| + void setCursorOverride(PassOwnPtr<Cursor>);
|
|
|
| bool hasOpenedPopup() const override;
|
| PassRefPtrWillBeRawPtr<PopupMenu> openPopupMenu(LocalFrame&, HTMLSelectElement&) override;
|
| @@ -186,6 +187,7 @@ private:
|
| WindowFeatures m_windowFeatures;
|
| Vector<PopupOpeningObserver*> m_popupOpeningObservers;
|
| Cursor m_lastSetMouseCursorForTesting;
|
| + OwnPtr<Cursor> m_overrideCursor;
|
| };
|
|
|
| DEFINE_TYPE_CASTS(ChromeClientImpl, ChromeClient, client, client->isChromeClientImpl(), client.isChromeClientImpl());
|
|
|