Index: Source/core/layout/LayoutTextTrackContainer.h |
diff --git a/Source/core/layout/LayoutTextTrackContainer.h b/Source/core/layout/LayoutTextTrackContainer.h |
index 98efe708cac6bbec26af37ae0bab9b640a4c7628..0d6fb5cc4c04562da01d1621744eb51ddf21ce9a 100644 |
--- a/Source/core/layout/LayoutTextTrackContainer.h |
+++ b/Source/core/layout/LayoutTextTrackContainer.h |
@@ -29,10 +29,12 @@ |
#define LayoutTextTrackContainer_h |
#include "core/layout/LayoutBlockFlow.h" |
+#include "platform/geometry/IntSize.h" |
namespace blink { |
class Element; |
+class LayoutVideo; |
class LayoutTextTrackContainer final : public LayoutBlockFlow { |
public: |
@@ -40,6 +42,11 @@ public: |
private: |
virtual void layout() override; |
+ |
+ bool updateSizes(const LayoutVideo&); |
+ |
+ IntSize m_videoSize; |
+ float m_fontSize; |
}; |
} // namespace blink |