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

Unified Diff: Source/core/layout/LayoutTextTrackContainer.h

Issue 949203002: Separate the text track container from the media controls (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: same size as media controls 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
Index: Source/core/layout/LayoutTextTrackContainer.h
diff --git a/Source/core/layout/LayoutTextTrackContainerElement.h b/Source/core/layout/LayoutTextTrackContainer.h
similarity index 84%
rename from Source/core/layout/LayoutTextTrackContainerElement.h
rename to Source/core/layout/LayoutTextTrackContainer.h
index 7297fe766e25c05b02cc23423e610bc5d93ac016..43cbc7fc5e2680f5c4d29b6c5bdcf6f392d48b64 100644
--- a/Source/core/layout/LayoutTextTrackContainerElement.h
+++ b/Source/core/layout/LayoutTextTrackContainer.h
@@ -25,18 +25,18 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#ifndef LayoutTextTrackContainerElement_h
-#define LayoutTextTrackContainerElement_h
+#ifndef LayoutTextTrackContainer_h
+#define LayoutTextTrackContainer_h
-#include "core/html/shadow/MediaControlElements.h"
+#include "core/html/track/TextTrackContainer.h"
#include "core/rendering/RenderBlockFlow.h"
#include "core/rendering/RenderFlexibleBox.h"
fs 2015/02/26 12:30:52 Don't see why this is needed... (or the core/html
philipj_slow 2015/02/27 07:13:52 Cleaned up a bit.
namespace blink {
-class LayoutTextTrackContainerElement final : public RenderBlockFlow {
+class LayoutTextTrackContainer final : public RenderBlockFlow {
public:
- LayoutTextTrackContainerElement(Element*);
+ LayoutTextTrackContainer(Element*);
private:
virtual void layout() override;
@@ -45,5 +45,5 @@ private:
} // namespace blink
-#endif // LayoutTextTrackContainerElement_h
+#endif // LayoutTextTrackContainer_h

Powered by Google App Engine
This is Rietveld 408576698