Title: [90329] trunk/Source/WebKit2
Revision
90329
Author
[email protected]
Date
2011-07-02 17:51:25 -0700 (Sat, 02 Jul 2011)

Log Message

Fix Windows build for real.

* WebProcess/Plugins/Netscape/win/NetscapePluginWin.cpp:
(WebKit::NetscapePlugin::containingWindow):
(WebKit::NetscapePlugin::scheduleWindowedGeometryUpdate):
(WebKit::NetscapePlugin::platformPaint):
(WebKit::NetscapePlugin::platformHandleMouseEvent):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (90328 => 90329)


--- trunk/Source/WebKit2/ChangeLog	2011-07-02 23:55:54 UTC (rev 90328)
+++ trunk/Source/WebKit2/ChangeLog	2011-07-03 00:51:25 UTC (rev 90329)
@@ -1,5 +1,15 @@
 2011-07-02  Anders Carlsson  <[email protected]>
 
+        Fix Windows build for real.
+
+        * WebProcess/Plugins/Netscape/win/NetscapePluginWin.cpp:
+        (WebKit::NetscapePlugin::containingWindow):
+        (WebKit::NetscapePlugin::scheduleWindowedGeometryUpdate):
+        (WebKit::NetscapePlugin::platformPaint):
+        (WebKit::NetscapePlugin::platformHandleMouseEvent):
+
+2011-07-02  Anders Carlsson  <[email protected]>
+
         Implement NPN_PluginThreadAsyncCall
         https://bugs.webkit.org/show_bug.cgi?id=63868
 

Modified: trunk/Source/WebKit2/WebProcess/Plugins/Netscape/win/NetscapePluginWin.cpp (90328 => 90329)


--- trunk/Source/WebKit2/WebProcess/Plugins/Netscape/win/NetscapePluginWin.cpp	2011-07-02 23:55:54 UTC (rev 90328)
+++ trunk/Source/WebKit2/WebProcess/Plugins/Netscape/win/NetscapePluginWin.cpp	2011-07-03 00:51:25 UTC (rev 90329)
@@ -84,7 +84,7 @@
 
 HWND NetscapePlugin::containingWindow() const
 {
-    return pluginController()->nativeParentWindow();
+    return controller()->nativeParentWindow();
 }
 
 bool NetscapePlugin::platformPostInitialize()
@@ -167,11 +167,11 @@
 
     WindowGeometry geometry;
     geometry.window = m_window;
-    geometry.visible = pluginController()->isPluginVisible();
+    geometry.visible = controller()->isPluginVisible();
     geometry.frame = m_frameRect;
     geometry.clipRect = clipRectInPluginWindowCoordinates;
 
-    pluginController()->scheduleWindowedPluginGeometryUpdate(geometry);
+    controller()->scheduleWindowedPluginGeometryUpdate(geometry);
 }
 
 void NetscapePlugin::platformPaint(GraphicsContext* context, const IntRect& dirtyRect, bool)
@@ -185,7 +185,7 @@
         return;
     }
 
-    pluginController()->willSendEventToPlugin();
+    controller()->willSendEventToPlugin();
     
     LocalWindowsContext windowsContext(context, dirtyRect, m_isTransparent);
 
@@ -293,7 +293,7 @@
     if (m_isWindowed)
         return false;
 
-    pluginController()->willSendEventToPlugin();
+    controller()->willSendEventToPlugin();
 
     NPEvent npEvent = toNP(event);
     NPP_HandleEvent(&npEvent);
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to