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

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

Issue 2625773002: Reenable framebusting (Closed)
Patch Set: Pass through FrameReplicationState Created 3 years, 11 months 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/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.

Powered by Google App Engine
This is Rietveld 408576698