Index: third_party/WebKit/Source/core/dom/Document.h |
diff --git a/third_party/WebKit/Source/core/dom/Document.h b/third_party/WebKit/Source/core/dom/Document.h |
index 2199e569be68ce6fe2e41e9e3397b15ae9f4a548..7197982d91f34c88662091c10315914433cf70e6 100644 |
--- a/third_party/WebKit/Source/core/dom/Document.h |
+++ b/third_party/WebKit/Source/core/dom/Document.h |
@@ -1298,10 +1298,6 @@ class CORE_EXPORT Document : public ContainerNode, |
const PropertyRegistry* propertyRegistry() const; |
PropertyRegistry* propertyRegistry(); |
- // Indicates whether the user has interacted with this particular Document. |
- void setHasReceivedUserGesture() { m_hasReceivedUserGesture = true; } |
- bool hasReceivedUserGesture() const { return m_hasReceivedUserGesture; } |
- |
// Document maintains a counter of visible non-secure password |
// fields in the page. Used to notify the embedder when all visible |
// non-secure passwords fields are no longer visible. |
@@ -1560,7 +1556,6 @@ class CORE_EXPORT Document : public ContainerNode, |
bool m_designMode; |
bool m_isRunningExecCommand; |
- bool m_hasReceivedUserGesture; |
HeapHashSet<WeakMember<const LiveNodeListBase>> m_listsInvalidatedAtDocument; |
// Oilpan keeps track of all registered NodeLists. |