Title: [157550] trunk/Source/WebCore
Revision
157550
Author
timothy_hor...@apple.com
Date
2013-10-16 18:58:53 -0700 (Wed, 16 Oct 2013)

Log Message

Attempt to fix the Windows build after http://trac.webkit.org/changeset/157547.

The relevant conversion doesn't happen implicitly.

* platform/graphics/win/MediaPlayerPrivateFullscreenWindow.cpp:
(WebCore::MediaPlayerPrivateFullscreenWindow::setRootChildLayer):
(WebCore::MediaPlayerPrivateFullscreenWindow::wndProc):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (157549 => 157550)


--- trunk/Source/WebCore/ChangeLog	2013-10-17 01:54:45 UTC (rev 157549)
+++ trunk/Source/WebCore/ChangeLog	2013-10-17 01:58:53 UTC (rev 157550)
@@ -2,6 +2,16 @@
 
         Attempt to fix the Windows build after http://trac.webkit.org/changeset/157547.
 
+        The relevant conversion doesn't happen implicitly.
+
+        * platform/graphics/win/MediaPlayerPrivateFullscreenWindow.cpp:
+        (WebCore::MediaPlayerPrivateFullscreenWindow::setRootChildLayer):
+        (WebCore::MediaPlayerPrivateFullscreenWindow::wndProc):
+
+2013-10-16  Tim Horton  <timothy_hor...@apple.com>
+
+        Attempt to fix the Windows build after http://trac.webkit.org/changeset/157547.
+
         Apparently some Windows code uses setFrame and I missed it.
 
         * platform/graphics/win/MediaPlayerPrivateFullscreenWindow.cpp:

Modified: trunk/Source/WebCore/platform/graphics/win/MediaPlayerPrivateFullscreenWindow.cpp (157549 => 157550)


--- trunk/Source/WebCore/platform/graphics/win/MediaPlayerPrivateFullscreenWindow.cpp	2013-10-17 01:54:45 UTC (rev 157549)
+++ trunk/Source/WebCore/platform/graphics/win/MediaPlayerPrivateFullscreenWindow.cpp	2013-10-17 01:58:53 UTC (rev 157550)
@@ -120,7 +120,7 @@
     PlatformCALayer* rootLayer = m_rootChild->rootLayer();
     CGRect rootBounds = m_rootChild->rootLayer()->bounds();
     m_rootChild->setPosition(rootBounds.origin);
-    m_rootChild->setBounds(FloatRect(FloatPoint(), rootBounds.size));
+    m_rootChild->setBounds(FloatRect(FloatPoint(), FloatSize(rootBounds.size)));
     m_rootChild->setBackgroundColor(CGColorGetConstantColor(kCGColorBlack));
 #ifndef NDEBUG
     RetainPtr<CGColorRef> redColor = adoptCF(CGColorCreateGenericRGB(1, 0, 0, 1));
@@ -172,7 +172,7 @@
                 PlatformCALayer* rootLayer = m_rootChild->rootLayer();
                 CGRect rootBounds = m_rootChild->rootLayer()->bounds();
                 m_rootChild->setPosition(rootBounds.origin);
-                m_rootChild->setBounds(FloatRect(FloatPoint(), rootBounds.size));
+                m_rootChild->setBounds(FloatRect(FloatPoint(), FloatSize(rootBounds.size)));
                 m_rootChild->setNeedsLayout();
             }
 #endif
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to