Index: third_party/WebKit/Source/core/html/HTMLIFrameElementPermissions.h |
diff --git a/third_party/WebKit/Source/core/html/HTMLIFrameElementPermissions.h b/third_party/WebKit/Source/core/html/HTMLIFrameElementPermissions.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..23c79ae9f8c8640e7dff2c5124183ff3775280d8 |
--- /dev/null |
+++ b/third_party/WebKit/Source/core/html/HTMLIFrameElementPermissions.h |
@@ -0,0 +1,32 @@ |
+// Copyright 2016 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSDstyle license that can be |
+// found in the LICENSE file. |
+ |
+#ifndef HTMLIFrameElementPermissions_h |
+#define HTMLIFrameElementPermissions_h |
+ |
+#include "core/dom/DOMTokenList.h" |
+#include "public/platform/modules/permissions/WebPermissionType.h" |
+#include "wtf/Vector.h" |
+ |
+namespace blink { |
+ |
+class HTMLIFrameElementPermissions final : public DOMTokenList { |
+public: |
+ static HTMLIFrameElementPermissions* create(DOMTokenListObserver* observer = nullptr) |
+ { |
+ return new HTMLIFrameElementPermissions(observer); |
+ } |
+ |
+ ~HTMLIFrameElementPermissions() override; |
+ |
+ Vector<WebPermissionType> parseDelegatedPermissions(String& invalidTokensErrorMessage) const; |
+ |
+private: |
+ explicit HTMLIFrameElementPermissions(DOMTokenListObserver*); |
+ bool validateTokenValue(const AtomicString&, ExceptionState&) const override; |
esprehn
2016/06/01 05:05:57
add arg name for the AtomicString, primitives like
raymes
2016/06/06 06:48:29
Done.
|
+}; |
+ |
+} // namespace blink |
+ |
+#endif |