Chromium Code Reviews

Unified Diff: third_party/WebKit/Source/core/dom/Document.cpp

Issue 2408333004: Move persistent gesture state to Document, add DocumentUserGestureToken (Closed)
Patch Set: Address comments Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: third_party/WebKit/Source/core/dom/Document.cpp
diff --git a/third_party/WebKit/Source/core/dom/Document.cpp b/third_party/WebKit/Source/core/dom/Document.cpp
index fbff453bbdd86771a7d6d99ac8502d3f0f2939a9..8bbe12d61507fe1c1b998195a1b25b086ff5f59c 100644
--- a/third_party/WebKit/Source/core/dom/Document.cpp
+++ b/third_party/WebKit/Source/core/dom/Document.cpp
@@ -464,6 +464,7 @@ Document::Document(const DocumentInit& initializer,
m_hasXMLDeclaration(0),
m_designMode(false),
m_isRunningExecCommand(false),
+ m_hasReceivedUserGesture(false),
m_hasAnnotatedRegions(false),
m_annotatedRegionsDirty(false),
m_useSecureKeyboardEntryWhenActive(false),

Powered by Google App Engine