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

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

Issue 2558113002: Drop-down closes via tap/touch again. (Closed)
Patch Set: 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
Index: third_party/WebKit/Source/web/WebViewImpl.h
diff --git a/third_party/WebKit/Source/web/WebViewImpl.h b/third_party/WebKit/Source/web/WebViewImpl.h
index 66a0cfa7bd7eaba8db52d73f268d62a72507fae9..e6b8ef4d9a998fff118d3d68febbf3f642456abf 100644
--- a/third_party/WebKit/Source/web/WebViewImpl.h
+++ b/third_party/WebKit/Source/web/WebViewImpl.h
@@ -667,6 +667,11 @@ class WEB_EXPORT WebViewImpl final
// The popup associated with an input/select element.
RefPtr<WebPagePopupImpl> m_pagePopup;
+ // This stores the last cancelled page popup. If a GestureTap attempts to
+ // open the popup that is closed by its previous GestureTapDown, the popup
+ // remains closed.
+ RefPtr<WebPagePopupImpl> m_lastCancelledPagePopup;
bokan 2016/12/08 16:28:35 This should be called m_lastHiddenPagePopup.
sahel 2016/12/09 15:36:37 Done.
+
Persistent<DevToolsEmulator> m_devToolsEmulator;
std::unique_ptr<PageOverlay> m_pageColorOverlay;

Powered by Google App Engine
This is Rietveld 408576698