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

Unified Diff: Source/core/layout/LayoutVideo.cpp

Issue 930833003: Move and rename RenderReplaced and RenderHTMLCanvas to Layout{Replaced,HTMLCanvas}. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: No need to declare renderName() at all. 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/layout/LayoutReplaced.cpp ('k') | Source/core/paint/HTMLCanvasPainter.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/layout/LayoutVideo.cpp
diff --git a/Source/core/layout/LayoutVideo.cpp b/Source/core/layout/LayoutVideo.cpp
index 3e0fd423c9541844a4cfadf3fabc0a95e7f912cc..8262328a23c65b67e2b095276fff3d8575455b0b 100644
--- a/Source/core/layout/LayoutVideo.cpp
+++ b/Source/core/layout/LayoutVideo.cpp
@@ -183,17 +183,17 @@ void LayoutVideo::updatePlayer()
LayoutUnit LayoutVideo::computeReplacedLogicalWidth(ShouldComputePreferred shouldComputePreferred) const
{
- return RenderReplaced::computeReplacedLogicalWidth(shouldComputePreferred);
+ return LayoutReplaced::computeReplacedLogicalWidth(shouldComputePreferred);
}
LayoutUnit LayoutVideo::computeReplacedLogicalHeight() const
{
- return RenderReplaced::computeReplacedLogicalHeight();
+ return LayoutReplaced::computeReplacedLogicalHeight();
}
LayoutUnit LayoutVideo::minimumReplacedHeight() const
{
- return RenderReplaced::minimumReplacedHeight();
+ return LayoutReplaced::minimumReplacedHeight();
}
bool LayoutVideo::supportsAcceleratedRendering() const
« no previous file with comments | « Source/core/layout/LayoutReplaced.cpp ('k') | Source/core/paint/HTMLCanvasPainter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698