Title: [142655] trunk/Source/WebCore
Revision
142655
Author
[email protected]
Date
2013-02-12 12:56:06 -0800 (Tue, 12 Feb 2013)

Log Message

Unreviewed Windows build fix.

* testing/Internals.cpp:
(WebCore::Internals::resetToConsistentState):
(WebCore::Internals::Internals):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (142654 => 142655)


--- trunk/Source/WebCore/ChangeLog	2013-02-12 20:45:44 UTC (rev 142654)
+++ trunk/Source/WebCore/ChangeLog	2013-02-12 20:56:06 UTC (rev 142655)
@@ -1,3 +1,11 @@
+2013-02-12  Roger Fong  <[email protected]>
+
+        Unreviewed Windows build fix.
+
+        * testing/Internals.cpp:
+        (WebCore::Internals::resetToConsistentState):
+        (WebCore::Internals::Internals):
+
 2013-02-12  Vivek Galatage  <[email protected]>
 
         Web Inspector: _javascript_ execution disabled by browser/UA should be notified to the front-end

Modified: trunk/Source/WebCore/testing/Internals.cpp (142654 => 142655)


--- trunk/Source/WebCore/testing/Internals.cpp	2013-02-12 20:45:44 UTC (rev 142654)
+++ trunk/Source/WebCore/testing/Internals.cpp	2013-02-12 20:56:06 UTC (rev 142655)
@@ -259,7 +259,7 @@
     if (page->inspectorController())
         page->inspectorController()->setProfilerEnabled(false);
 #endif
-#if ENABLE(VIDEO_TRACK)
+#if ENABLE(VIDEO_TRACK) && !PLATFORM(WIN)
     page->group().captionPreferences()->setTestingMode(false);
 #endif
 }
@@ -267,7 +267,7 @@
 Internals::Internals(Document* document)
     : ContextDestructionObserver(document)
 {
-#if ENABLE(VIDEO_TRACK)
+#if ENABLE(VIDEO_TRACK) && !PLATFORM(WIN)
     if (document && document->page())
         document->page()->group().captionPreferences()->setTestingMode(true);
 #endif
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to