Title: [90327] trunk/Source/WebKit2
- Revision
- 90327
- Author
- [email protected]
- Date
- 2011-07-02 16:41:26 -0700 (Sat, 02 Jul 2011)
Log Message
Fix Windows build.
* WebProcess/Plugins/Netscape/win/NetscapePluginWin.cpp:
(WebKit::NetscapePlugin::containingWindow):
(WebKit::NetscapePlugin::scheduleWindowedGeometryUpdate):
(WebKit::NetscapePlugin::platformPaint):
(WebKit::NetscapePlugin::platformHandleMouseEvent):
(WebKit::NetscapePlugin::platformHandleMouseEnterEvent):
(WebKit::NetscapePlugin::platformHandleMouseLeaveEvent):
Modified Paths
Diff
Modified: trunk/Source/WebKit2/ChangeLog (90326 => 90327)
--- trunk/Source/WebKit2/ChangeLog 2011-07-02 23:40:31 UTC (rev 90326)
+++ trunk/Source/WebKit2/ChangeLog 2011-07-02 23:41:26 UTC (rev 90327)
@@ -1,5 +1,17 @@
2011-07-02 Anders Carlsson <[email protected]>
+ Fix Windows build.
+
+ * WebProcess/Plugins/Netscape/win/NetscapePluginWin.cpp:
+ (WebKit::NetscapePlugin::containingWindow):
+ (WebKit::NetscapePlugin::scheduleWindowedGeometryUpdate):
+ (WebKit::NetscapePlugin::platformPaint):
+ (WebKit::NetscapePlugin::platformHandleMouseEvent):
+ (WebKit::NetscapePlugin::platformHandleMouseEnterEvent):
+ (WebKit::NetscapePlugin::platformHandleMouseLeaveEvent):
+
+2011-07-02 Anders Carlsson <[email protected]>
+
Move the plug-in controller member variable up to the shared Plugin base class
https://bugs.webkit.org/show_bug.cgi?id=63867
Modified: trunk/Source/WebKit2/WebProcess/Plugins/Netscape/win/NetscapePluginWin.cpp (90326 => 90327)
--- trunk/Source/WebKit2/WebProcess/Plugins/Netscape/win/NetscapePluginWin.cpp 2011-07-02 23:40:31 UTC (rev 90326)
+++ trunk/Source/WebKit2/WebProcess/Plugins/Netscape/win/NetscapePluginWin.cpp 2011-07-02 23:41:26 UTC (rev 90327)
@@ -84,7 +84,7 @@
HWND NetscapePlugin::containingWindow() const
{
- return m_pluginController->nativeParentWindow();
+ return pluginController()->nativeParentWindow();
}
bool NetscapePlugin::platformPostInitialize()
@@ -167,11 +167,11 @@
WindowGeometry geometry;
geometry.window = m_window;
- geometry.visible = m_pluginController->isPluginVisible();
+ geometry.visible = pluginController()->isPluginVisible();
geometry.frame = m_frameRect;
geometry.clipRect = clipRectInPluginWindowCoordinates;
- m_pluginController->scheduleWindowedPluginGeometryUpdate(geometry);
+ pluginController()->scheduleWindowedPluginGeometryUpdate(geometry);
}
void NetscapePlugin::platformPaint(GraphicsContext* context, const IntRect& dirtyRect, bool)
@@ -185,7 +185,7 @@
return;
}
- m_pluginController->willSendEventToPlugin();
+ pluginController()->willSendEventToPlugin();
LocalWindowsContext windowsContext(context, dirtyRect, m_isTransparent);
@@ -293,7 +293,7 @@
if (m_isWindowed)
return false;
- m_pluginController->willSendEventToPlugin();
+ pluginController()->willSendEventToPlugin();
NPEvent npEvent = toNP(event);
NPP_HandleEvent(&npEvent);
@@ -322,7 +322,7 @@
if (m_isWindowed)
return false;
- m_pluginController->willSendEventToPlugin();
+ pluginController()->willSendEventToPlugin();
NPEvent npEvent = toNP(event);
NPP_HandleEvent(&npEvent);
@@ -336,7 +336,7 @@
if (m_isWindowed)
return false;
- m_pluginController->willSendEventToPlugin();
+ pluginController()->willSendEventToPlugin();
NPEvent npEvent = toNP(event);
NPP_HandleEvent(&npEvent);
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes