Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1130)

Unified Diff: Source/core/html/track/TextTrackContainer.h

Issue 962923002: Ideas for text track container follow-up Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase and ramble Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/html/HTMLMediaElement.cpp ('k') | Source/core/html/track/TextTrackContainer.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/track/TextTrackContainer.h
diff --git a/Source/core/html/track/TextTrackContainer.h b/Source/core/html/track/TextTrackContainer.h
index 1ed4ac9e0eb1b44945bdcd891600b40df1b434c4..a641fce561b7e440446648bf83bd2c4af211b395 100644
--- a/Source/core/html/track/TextTrackContainer.h
+++ b/Source/core/html/track/TextTrackContainer.h
@@ -34,14 +34,14 @@
namespace blink {
-class HTMLMediaElement;
+class HTMLVideoElement;
class TextTrackContainer final : public HTMLDivElement {
public:
static PassRefPtrWillBeRawPtr<TextTrackContainer> create(Document&);
- void updateDisplay(HTMLMediaElement&);
- void updateSizes(HTMLMediaElement&);
+ void updateDisplay(HTMLVideoElement&);
+ void updateSizes(const LayoutSize&);
private:
TextTrackContainer(Document&);
@@ -50,7 +50,7 @@ private:
virtual LayoutObject* createRenderer(const LayoutStyle&) override;
- IntSize m_videoSize;
+ LayoutSize m_videoSize;
float m_fontSize;
};
« no previous file with comments | « Source/core/html/HTMLMediaElement.cpp ('k') | Source/core/html/track/TextTrackContainer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698