| OLD | NEW |
| (Empty) |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef LayoutMediaItem_h | |
| 6 #define LayoutMediaItem_h | |
| 7 | |
| 8 #include "core/layout/LayoutMedia.h" | |
| 9 #include "core/layout/api/LayoutImageItem.h" | |
| 10 | |
| 11 namespace blink { | |
| 12 | |
| 13 class LayoutMediaItem : public LayoutImageItem { | |
| 14 public: | |
| 15 explicit LayoutMediaItem(LayoutMedia* layoutMedia) | |
| 16 : LayoutImageItem(layoutMedia) {} | |
| 17 | |
| 18 explicit LayoutMediaItem(const LayoutItem& item) : LayoutImageItem(item) { | |
| 19 SECURITY_DCHECK(!item || item.isMedia()); | |
| 20 } | |
| 21 | |
| 22 explicit LayoutMediaItem(std::nullptr_t) : LayoutImageItem(nullptr) {} | |
| 23 | |
| 24 LayoutMediaItem() {} | |
| 25 | |
| 26 void setRequestPositionUpdates(bool want) { | |
| 27 return toMedia()->setRequestPositionUpdates(want); | |
| 28 } | |
| 29 | |
| 30 private: | |
| 31 LayoutMedia* toMedia() { return toLayoutMedia(layoutObject()); } | |
| 32 | |
| 33 const LayoutMedia* toMedia() const { return toLayoutMedia(layoutObject()); } | |
| 34 }; | |
| 35 | |
| 36 } // namespace blink | |
| 37 | |
| 38 #endif // LayoutMediaItem_h | |
| OLD | NEW |