Title: [177558] trunk/Source/WebKit/win
- Revision
- 177558
- Author
- [email protected]
- Date
- 2014-12-18 19:04:53 -0800 (Thu, 18 Dec 2014)
Log Message
[WinCairo] Compile error in code for creating GL context.
https://bugs.webkit.org/show_bug.cgi?id=139782
Patch by [email protected] <[email protected]> on 2014-12-18
Reviewed by Alex Christensen.
The GLContext::createContextForWindow method has changed return type to std::unique_ptr.
* WebCoreSupport/AcceleratedCompositingContext.h:
Modified Paths
Diff
Modified: trunk/Source/WebKit/win/ChangeLog (177557 => 177558)
--- trunk/Source/WebKit/win/ChangeLog 2014-12-19 02:56:59 UTC (rev 177557)
+++ trunk/Source/WebKit/win/ChangeLog 2014-12-19 03:04:53 UTC (rev 177558)
@@ -1,3 +1,14 @@
+2014-12-18 [email protected] <[email protected]>
+
+ [WinCairo] Compile error in code for creating GL context.
+ https://bugs.webkit.org/show_bug.cgi?id=139782
+
+ Reviewed by Alex Christensen.
+
+ The GLContext::createContextForWindow method has changed return type to std::unique_ptr.
+
+ * WebCoreSupport/AcceleratedCompositingContext.h:
+
2014-12-18 Brent Fulgham <[email protected]>
[Win] Update DumpRenderTree to more closely match Mac version
Modified: trunk/Source/WebKit/win/WebCoreSupport/AcceleratedCompositingContext.h (177557 => 177558)
--- trunk/Source/WebKit/win/WebCoreSupport/AcceleratedCompositingContext.h 2014-12-19 02:56:59 UTC (rev 177557)
+++ trunk/Source/WebKit/win/WebCoreSupport/AcceleratedCompositingContext.h 2014-12-19 03:04:53 UTC (rev 177558)
@@ -67,7 +67,7 @@
private:
WebView& m_webView;
- OwnPtr<WebCore::GLContext> m_context;
+ std::unique_ptr<WebCore::GLContext> m_context;
HWND m_window;
std::unique_ptr<WebCore::GraphicsLayer> m_rootLayer;
std::unique_ptr<WebCore::GraphicsLayer> m_nonCompositedContentLayer;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes