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 a2acaddeb2943db66145e50fe44d91f8bcd0e57c..63e295ba721d92e064d73e563082086811bc361f 100644 |
--- a/third_party/WebKit/Source/core/dom/Document.h |
+++ b/third_party/WebKit/Source/core/dom/Document.h |
@@ -1303,10 +1303,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. |
@@ -1564,7 +1560,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. |