OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef HTMLIFrameElementPayments_h | 5 #ifndef HTMLIFrameElementPayments_h |
6 #define HTMLIFrameElementPayments_h | 6 #define HTMLIFrameElementPayments_h |
7 | 7 |
| 8 #include "core/html/HTMLIFrameElement.h" |
8 #include "platform/Supplementable.h" | 9 #include "platform/Supplementable.h" |
9 #include "platform/heap/Handle.h" | 10 #include "platform/heap/Handle.h" |
10 | 11 |
11 namespace blink { | 12 namespace blink { |
12 | 13 |
13 class HTMLIFrameElement; | 14 class HTMLIFrameElement; |
14 class QualifiedName; | 15 class QualifiedName; |
15 | 16 |
16 class HTMLIFrameElementPayments final | 17 class HTMLIFrameElementPayments final |
17 : public GarbageCollected<HTMLIFrameElementPayments>, | 18 : public GarbageCollected<HTMLIFrameElementPayments>, |
(...skipping 12 matching lines...) Expand all Loading... |
30 | 31 |
31 private: | 32 private: |
32 HTMLIFrameElementPayments(); | 33 HTMLIFrameElementPayments(); |
33 | 34 |
34 static const char* supplementName(); | 35 static const char* supplementName(); |
35 }; | 36 }; |
36 | 37 |
37 } // namespace blink | 38 } // namespace blink |
38 | 39 |
39 #endif // HTMLIFrameElementPayments_h | 40 #endif // HTMLIFrameElementPayments_h |
OLD | NEW |