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

Unified Diff: Source/core/rendering/RenderVideo.cpp

Issue 369893006: Allow HTMLPlugInElement to host UA shadow DOM. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 6 years, 4 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/rendering/RenderReplaced.cpp ('k') | Source/core/testing/Internals.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/RenderVideo.cpp
diff --git a/Source/core/rendering/RenderVideo.cpp b/Source/core/rendering/RenderVideo.cpp
index ed5e58cb228cb37b170412ccfd59f8dec8b603f2..13f1cd1e58b5c9e453a683bd2a97ed219a00fc24 100644
--- a/Source/core/rendering/RenderVideo.cpp
+++ b/Source/core/rendering/RenderVideo.cpp
@@ -53,11 +53,7 @@ RenderVideo::~RenderVideo()
IntSize RenderVideo::defaultSize()
{
- // These values are specified in the spec.
- static const int cDefaultWidth = 300;
- static const int cDefaultHeight = 150;
-
- return IntSize(cDefaultWidth, cDefaultHeight);
+ return IntSize(defaultWidth, defaultHeight);
}
void RenderVideo::intrinsicSizeChanged()
« no previous file with comments | « Source/core/rendering/RenderReplaced.cpp ('k') | Source/core/testing/Internals.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698