| OLD | NEW |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 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 HTMLMediaElementControlsList_h | 5 #ifndef HTMLMediaElementControlsList_h |
| 6 #define HTMLMediaElementControlsList_h | 6 #define HTMLMediaElementControlsList_h |
| 7 | 7 |
| 8 #include "core/dom/DOMTokenList.h" | 8 #include "core/dom/DOMTokenList.h" |
| 9 #include "platform/heap/Handle.h" | 9 #include "platform/heap/Handle.h" |
| 10 | 10 |
| (...skipping 25 matching lines...) Expand all Loading... |
| 36 | 36 |
| 37 // DOMTokenListObserver. | 37 // DOMTokenListObserver. |
| 38 void valueWasSet() override; | 38 void valueWasSet() override; |
| 39 | 39 |
| 40 Member<HTMLMediaElement> m_element; | 40 Member<HTMLMediaElement> m_element; |
| 41 }; | 41 }; |
| 42 | 42 |
| 43 } // namespace blink | 43 } // namespace blink |
| 44 | 44 |
| 45 #endif | 45 #endif |
| OLD | NEW |