Title: [99119] trunk/Source/WebKit2
Revision
99119
Author
[email protected]
Date
2011-11-02 16:22:54 -0700 (Wed, 02 Nov 2011)

Log Message

Fix build error from r99108.

* WebProcess/WebPage/WebPage.cpp:
(WebKit::WebPage::performDragControllerAction):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (99118 => 99119)


--- trunk/Source/WebKit2/ChangeLog	2011-11-02 23:17:47 UTC (rev 99118)
+++ trunk/Source/WebKit2/ChangeLog	2011-11-02 23:22:54 UTC (rev 99119)
@@ -1,3 +1,10 @@
+2011-11-02  Jon Lee  <[email protected]>
+
+        Fix build error from r99108.
+
+        * WebProcess/WebPage/WebPage.cpp:
+        (WebKit::WebPage::performDragControllerAction):
+
 2011-11-02  Dean Jackson  <[email protected]>
 
         Add ENABLE_CSS_SHADERS flag

Modified: trunk/Source/WebKit2/WebProcess/WebPage/WebPage.cpp (99118 => 99119)


--- trunk/Source/WebKit2/WebProcess/WebPage/WebPage.cpp	2011-11-02 23:17:47 UTC (rev 99118)
+++ trunk/Source/WebKit2/WebProcess/WebPage/WebPage.cpp	2011-11-02 23:22:54 UTC (rev 99119)
@@ -1816,7 +1816,7 @@
 void WebPage::performDragControllerAction(uint64_t action, WebCore::IntPoint clientPosition, WebCore::IntPoint globalPosition, uint64_t draggingSourceOperationMask, const WebCore::DragDataMap& dataMap, uint32_t flags)
 {
     if (!m_page) {
-        send(Messages::WebPageProxy::DidPerformDragControllerAction(DragSession());
+        send(Messages::WebPageProxy::DidPerformDragControllerAction(WebCore::DragSession());
         return;
     }
 
@@ -1847,7 +1847,7 @@
 void WebPage::performDragControllerAction(uint64_t action, WebCore::DragData dragData)
 {
     if (!m_page) {
-        send(Messages::WebPageProxy::DidPerformDragControllerAction(DragSession()));
+        send(Messages::WebPageProxy::DidPerformDragControllerAction(WebCore::DragSession()));
 #if PLATFORM(QT)
         QMimeData* data = ""
 #elif PLATFORM(GTK)
@@ -1891,7 +1891,7 @@
 void WebPage::performDragControllerAction(uint64_t action, WebCore::IntPoint clientPosition, WebCore::IntPoint globalPosition, uint64_t draggingSourceOperationMask, const String& dragStorageName, uint32_t flags, const SandboxExtension::Handle& sandboxExtensionHandle)
 {
     if (!m_page) {
-        send(Messages::WebPageProxy::DidPerformDragControllerAction(DragSession()));
+        send(Messages::WebPageProxy::DidPerformDragControllerAction(WebCore::DragSession()));
         return;
     }
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to