Index: third_party/WebKit/Source/core/dom/DocumentUserGestureToken.h |
diff --git a/third_party/WebKit/Source/core/dom/DocumentUserGestureToken.h b/third_party/WebKit/Source/core/dom/DocumentUserGestureToken.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..378629f3bf3a9176a5227f62c8439704b6749055 |
--- /dev/null |
+++ b/third_party/WebKit/Source/core/dom/DocumentUserGestureToken.h |
@@ -0,0 +1,41 @@ |
+// Copyright 2016 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#ifndef DocumentUserGestureToken_h |
+#define DocumentUserGestureToken_h |
+ |
+#include "core/dom/Document.h" |
+#include "platform/UserGestureIndicator.h" |
+ |
+namespace blink { |
+ |
+// Associates a UserGestureToken with a Document, if a non-null Document* |
+// is provided in the constructor. |
+class DocumentUserGestureToken final : public UserGestureToken { |
+ WTF_MAKE_NONCOPYABLE(DocumentUserGestureToken); |
+ |
+ public: |
+ static PassRefPtr<UserGestureToken> create( |
+ Document* document, |
+ Status status = PossiblyExistingGesture) { |
+ return adoptRef(new DocumentUserGestureToken(document, status)); |
+ } |
+ |
+ ~DocumentUserGestureToken() final {} |
+ |
+ private: |
+ DocumentUserGestureToken(Document* document, Status status) |
+ : UserGestureToken(status) { |
+ // TODO(japhet): This doesn't work if an ancestor is remote. |
+ // See http://crbug.com/658800 |
Charlie Reis
2016/10/24 21:38:16
What are the consequences of leaving this as a TOD
|
+ for (; document; document = document->parentDocument()) { |
+ if (document) |
+ document->setHasReceivedUserGesture(); |
+ } |
+ } |
+}; |
+ |
+} // namespace blink |
+ |
+#endif // DocumentUserGestureToken_h |