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

Unified Diff: Source/web/ChromeClientImpl.h

Issue 1143043006: Cleanup: Move ChromeClient::m_lastSetMouseCursorForTesting to ChromeClientImpl. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 6 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/core/testing/Internals.cpp ('k') | Source/web/ChromeClientImpl.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/ChromeClientImpl.h
diff --git a/Source/web/ChromeClientImpl.h b/Source/web/ChromeClientImpl.h
index d3caceb42579a52a21ec8cf10b95d09210b0f4fa..225ed52854c8a7bfef9acf0e3b4c18474ad7be11 100644
--- a/Source/web/ChromeClientImpl.h
+++ b/Source/web/ChromeClientImpl.h
@@ -108,7 +108,8 @@ public:
PassRefPtr<DateTimeChooser> openDateTimeChooser(DateTimeChooserClient*, const DateTimeChooserParameters&) override;
void runOpenPanel(LocalFrame*, PassRefPtr<FileChooser>) override;
void enumerateChosenDirectory(FileChooser*) override;
- void setCursorInternal(const Cursor&) override;
+ void setCursor(const Cursor&) override;
+ Cursor lastSetCursorForTesting() const override;
void needTouchEvents(bool needTouchEvents) override;
void setTouchAction(TouchAction) override;
@@ -175,6 +176,7 @@ private:
WebViewImpl* m_webView; // Weak pointer.
WindowFeatures m_windowFeatures;
Vector<PopupOpeningObserver*> m_popupOpeningObservers;
+ Cursor m_lastSetMouseCursorForTesting;
};
DEFINE_TYPE_CASTS(ChromeClientImpl, ChromeClient, client, client->isChromeClientImpl(), client.isChromeClientImpl());
« no previous file with comments | « Source/core/testing/Internals.cpp ('k') | Source/web/ChromeClientImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698