| Index: Source/core/rendering/RenderVTTCue.h
|
| diff --git a/Source/core/rendering/RenderTextTrackCue.h b/Source/core/rendering/RenderVTTCue.h
|
| similarity index 89%
|
| rename from Source/core/rendering/RenderTextTrackCue.h
|
| rename to Source/core/rendering/RenderVTTCue.h
|
| index ee0209792a3c9c353ccfec45be9f0a8a55b9aaf2..d357b24cc3ad0b1d22c8e5210ef34573b0341b29 100644
|
| --- a/Source/core/rendering/RenderTextTrackCue.h
|
| +++ b/Source/core/rendering/RenderVTTCue.h
|
| @@ -23,8 +23,8 @@
|
| * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
| */
|
|
|
| -#ifndef RenderTextTrackCue_h
|
| -#define RenderTextTrackCue_h
|
| +#ifndef RenderVTTCue_h
|
| +#define RenderVTTCue_h
|
|
|
| #include "core/rendering/RenderBlockFlow.h"
|
| #include "core/rendering/RenderInline.h"
|
| @@ -32,11 +32,12 @@
|
|
|
| namespace WebCore {
|
|
|
| -class TextTrackCueBox;
|
| +class VTTCue;
|
| +class VTTCueBox;
|
|
|
| -class RenderTextTrackCue FINAL : public RenderBlockFlow {
|
| +class RenderVTTCue FINAL : public RenderBlockFlow {
|
| public:
|
| - explicit RenderTextTrackCue(TextTrackCueBox*);
|
| + explicit RenderVTTCue(VTTCueBox*);
|
|
|
| private:
|
| virtual void layout() OVERRIDE;
|
| @@ -55,10 +56,10 @@ private:
|
| void repositionCueSnapToLinesSet();
|
| void repositionCueSnapToLinesNotSet();
|
|
|
| - TextTrackCue* m_cue;
|
| + VTTCue* m_cue;
|
| FloatPoint m_fallbackPosition;
|
| };
|
|
|
| } // namespace WebCore
|
|
|
| -#endif // RenderTextTrackCue_h
|
| +#endif // RenderVTTCue_h
|
|
|