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

Side by Side Diff: Source/core/html/track/vtt/VTTCue.h

Issue 1033943002: Rename LayoutStyle to papayawhip (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: ensureComputedStyle Created 5 years, 8 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/core/html/track/TextTrackContainer.cpp ('k') | Source/core/html/track/vtt/VTTCue.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2013, Opera Software ASA. All rights reserved. 2 * Copyright (c) 2013, Opera Software ASA. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 } 58 }
59 59
60 VTTCue* getCue() const { return m_cue; } 60 VTTCue* getCue() const { return m_cue; }
61 void applyCSSProperties(const VTTDisplayParameters&); 61 void applyCSSProperties(const VTTDisplayParameters&);
62 62
63 DECLARE_VIRTUAL_TRACE(); 63 DECLARE_VIRTUAL_TRACE();
64 64
65 private: 65 private:
66 VTTCueBox(Document&, VTTCue*); 66 VTTCueBox(Document&, VTTCue*);
67 67
68 virtual LayoutObject* createLayoutObject(const LayoutStyle&) override; 68 virtual LayoutObject* createLayoutObject(const ComputedStyle&) override;
69 69
70 RawPtrWillBeMember<VTTCue> m_cue; 70 RawPtrWillBeMember<VTTCue> m_cue;
71 }; 71 };
72 72
73 class VTTCue final : public TextTrackCue { 73 class VTTCue final : public TextTrackCue {
74 DEFINE_WRAPPERTYPEINFO(); 74 DEFINE_WRAPPERTYPEINFO();
75 public: 75 public:
76 static PassRefPtrWillBeRawPtr<VTTCue> create(Document& document, double star tTime, double endTime, const String& text) 76 static PassRefPtrWillBeRawPtr<VTTCue> create(Document& document, double star tTime, double endTime, const String& text)
77 { 77 {
78 return adoptRefWillBeNoop(new VTTCue(document, startTime, endTime, text) ); 78 return adoptRefWillBeNoop(new VTTCue(document, startTime, endTime, text) );
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
190 bool m_snapToLines : 1; 190 bool m_snapToLines : 1;
191 bool m_displayTreeShouldChange : 1; 191 bool m_displayTreeShouldChange : 1;
192 }; 192 };
193 193
194 // VTTCue is currently the only TextTrackCue subclass. 194 // VTTCue is currently the only TextTrackCue subclass.
195 DEFINE_TYPE_CASTS(VTTCue, TextTrackCue, cue, true, true); 195 DEFINE_TYPE_CASTS(VTTCue, TextTrackCue, cue, true, true);
196 196
197 } // namespace blink 197 } // namespace blink
198 198
199 #endif // VTTCue_h 199 #endif // VTTCue_h
OLDNEW
« no previous file with comments | « Source/core/html/track/TextTrackContainer.cpp ('k') | Source/core/html/track/vtt/VTTCue.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698