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

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

Issue 2625773002: Reenable framebusting (Closed)
Patch Set: 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 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.

Powered by Google App Engine
This is Rietveld 408576698