Title: [152176] trunk/Tools
Revision
152176
Author
[email protected]
Date
2013-06-28 10:54:00 -0700 (Fri, 28 Jun 2013)

Log Message

Enable AVFoundation in Web Prefs for WinLauncher and DumpRenderTree on Windows.
https://bugs.webkit.org/show_bug.cgi?id=118194.

Reviewed by Brent Fulgham.

* DumpRenderTree/win/DumpRenderTree.cpp:
(dllLauncherEntryPoint):
* WinLauncher/WinLauncher.cpp:
(dllLauncherEntryPoint):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (152175 => 152176)


--- trunk/Tools/ChangeLog	2013-06-28 17:31:30 UTC (rev 152175)
+++ trunk/Tools/ChangeLog	2013-06-28 17:54:00 UTC (rev 152176)
@@ -1,5 +1,17 @@
 2013-06-28  Roger Fong  <[email protected]>
 
+        Enable AVFoundation in Web Prefs for WinLauncher and DumpRenderTree on Windows.
+        https://bugs.webkit.org/show_bug.cgi?id=118194.
+
+        Reviewed by Brent Fulgham.
+
+        * DumpRenderTree/win/DumpRenderTree.cpp:
+        (dllLauncherEntryPoint):
+        * WinLauncher/WinLauncher.cpp:
+        (dllLauncherEntryPoint):
+
+2013-06-28  Roger Fong  <[email protected]>
+
         Unreviewed build fix for AppleWin port. Fix some file paths.
 
         * WinLauncher/WinLauncher.vcxproj/WinLauncherLib.vcxproj:

Modified: trunk/Tools/DumpRenderTree/win/DumpRenderTree.cpp (152175 => 152176)


--- trunk/Tools/DumpRenderTree/win/DumpRenderTree.cpp	2013-06-28 17:31:30 UTC (rev 152175)
+++ trunk/Tools/DumpRenderTree/win/DumpRenderTree.cpp	2013-06-28 17:54:00 UTC (rev 152176)
@@ -1349,6 +1349,7 @@
     standardPreferences->setJavaScriptEnabled(TRUE);
     standardPreferences->setDefaultFontSize(16);
     standardPreferences->setAcceleratedCompositingEnabled(true);
+    standardPreferences->setAVFoundationEnabled(TRUE);
     standardPreferences->setContinuousSpellCheckingEnabled(TRUE);
 
     if (printSupportedFeatures) {

Modified: trunk/Tools/WinLauncher/WinLauncher.cpp (152175 => 152176)


--- trunk/Tools/WinLauncher/WinLauncher.cpp	2013-06-28 17:31:30 UTC (rev 152175)
+++ trunk/Tools/WinLauncher/WinLauncher.cpp	2013-06-28 17:54:00 UTC (rev 152176)
@@ -345,6 +345,7 @@
         goto exit;
 
     standardPreferences->setAcceleratedCompositingEnabled(TRUE);
+    standardPreferences->setAVFoundationEnabled(TRUE);
 
     HRESULT hr = WebKitCreateInstance(CLSID_WebView, 0, IID_IWebView, reinterpret_cast<void**>(&gWebView));
     if (FAILED(hr))
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to