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

Unified Diff: third_party/WebKit/Source/core/page/ChromeClient.h

Issue 2592263003: Send an empty tooltip text when hovering over a different node (Closed)
Patch Set: Send an empty tooltip text when hoverring over a different node Created 4 years 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 | « no previous file | third_party/WebKit/Source/core/page/ChromeClient.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/page/ChromeClient.h
diff --git a/third_party/WebKit/Source/core/page/ChromeClient.h b/third_party/WebKit/Source/core/page/ChromeClient.h
index 46510033a27f038f44c13c8de13248865c16f894..45a79229a1c527d2029f36c54ed3b7374051387b 100644
--- a/third_party/WebKit/Source/core/page/ChromeClient.h
+++ b/third_party/WebKit/Source/core/page/ChromeClient.h
@@ -337,6 +337,8 @@ class CORE_EXPORT ChromeClient : public HostWindow {
virtual void installSupplements(LocalFrame&) {}
+ DECLARE_TRACE();
+
protected:
~ChromeClient() override {}
@@ -358,6 +360,7 @@ class CORE_EXPORT ChromeClient : public HostWindow {
const String& message);
void setToolTip(LocalFrame&, const HitTestResult&);
+ WeakMember<Node> m_lastMouseOverNode;
Stephen Chennney 2017/01/03 20:38:25 Does this really need to be a weak pointer, rather
LayoutPoint m_lastToolTipPoint;
String m_lastToolTipText;
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/page/ChromeClient.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698