Title: [88624] trunk/Source/WebKit/qt
Revision
88624
Author
[email protected]
Date
2011-06-12 19:17:23 -0700 (Sun, 12 Jun 2011)

Log Message

2011-06-12  Adam Barth  <[email protected]>

        Attempt to fix Qt build.

        * WebCoreSupport/FrameLoaderClientQt.cpp:
        (drtPrintFrameUserGestureStatus):

Modified Paths

Diff

Modified: trunk/Source/WebKit/qt/ChangeLog (88623 => 88624)


--- trunk/Source/WebKit/qt/ChangeLog	2011-06-13 02:05:29 UTC (rev 88623)
+++ trunk/Source/WebKit/qt/ChangeLog	2011-06-13 02:17:23 UTC (rev 88624)
@@ -1,5 +1,12 @@
 2011-06-12  Adam Barth  <[email protected]>
 
+        Attempt to fix Qt build.
+
+        * WebCoreSupport/FrameLoaderClientQt.cpp:
+        (drtPrintFrameUserGestureStatus):
+
+2011-06-12  Adam Barth  <[email protected]>
+
         Reviewed by Eric Seidel.
 
         Remove FrameLoader::isProcessingUserGesture

Modified: trunk/Source/WebKit/qt/WebCoreSupport/FrameLoaderClientQt.cpp (88623 => 88624)


--- trunk/Source/WebKit/qt/WebCoreSupport/FrameLoaderClientQt.cpp	2011-06-13 02:05:29 UTC (rev 88623)
+++ trunk/Source/WebKit/qt/WebCoreSupport/FrameLoaderClientQt.cpp	2011-06-13 02:17:23 UTC (rev 88624)
@@ -113,7 +113,7 @@
 
 static QString drtPrintFrameUserGestureStatus(WebCore::Frame* frame)
 {
-    if (ScriptController::processingUserGesture())
+    if (WebCore::ScriptController::processingUserGesture())
         return QString::fromLatin1("Frame with user gesture \"%1\"").arg(QLatin1String("true"));
     return QString::fromLatin1("Frame with user gesture \"%1\"").arg(QLatin1String("false"));
 }
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to