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

Unified Diff: third_party/WebKit/Source/web/ChromeClientImpl.h

Issue 2043903002: Move didChangeCursor calls from WebViewClient to WebWidgetClient. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: removed todo Created 4 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
Index: third_party/WebKit/Source/web/ChromeClientImpl.h
diff --git a/third_party/WebKit/Source/web/ChromeClientImpl.h b/third_party/WebKit/Source/web/ChromeClientImpl.h
index 9d575c4386acf63e08442f360c3ffdedc0667f60..85c94d016251b682d8c0e81dfe76daf3ea14a8e8 100644
--- a/third_party/WebKit/Source/web/ChromeClientImpl.h
+++ b/third_party/WebKit/Source/web/ChromeClientImpl.h
@@ -117,7 +117,7 @@ public:
DateTimeChooser* openDateTimeChooser(DateTimeChooserClient*, const DateTimeChooserParameters&) override;
void openFileChooser(LocalFrame*, PassRefPtr<FileChooser>) override;
void enumerateChosenDirectory(FileChooser*) override;
- void setCursor(const Cursor&, LocalFrame* localRoot) override;
+ void setCursor(const Cursor&, LocalFrame*) override;
Cursor lastSetCursorForTesting() const override;
void setEventListenerProperties(WebEventListenerClass, WebEventListenerProperties) override;
WebEventListenerProperties eventListenerProperties(WebEventListenerClass) const override;
@@ -144,7 +144,7 @@ public:
String acceptLanguages() override;
// ChromeClientImpl:
- void setCursorForPlugin(const WebCursorInfo&, LocalFrame* localRoot);
+ void setCursorForPlugin(const WebCursorInfo&, LocalFrame*);
void setNewWindowNavigationPolicy(WebNavigationPolicy);
void setCursorOverridden(bool);
@@ -197,7 +197,7 @@ private:
void registerPopupOpeningObserver(PopupOpeningObserver*) override;
void unregisterPopupOpeningObserver(PopupOpeningObserver*) override;
- void setCursor(const WebCursorInfo&, LocalFrame* localRoot);
+ void setCursor(const WebCursorInfo&, LocalFrame*);
WebViewImpl* m_webView; // Weak pointer.
WindowFeatures m_windowFeatures;
« no previous file with comments | « third_party/WebKit/Source/core/frame/FrameView.cpp ('k') | third_party/WebKit/Source/web/ChromeClientImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698