Title: [184285] trunk/Source/WebKit2
- Revision
- 184285
- Author
- [email protected]
- Date
- 2015-05-13 02:31:21 -0700 (Wed, 13 May 2015)
Log Message
Minor cleanups to PluginProxy.cpp.
https://bugs.webkit.org/show_bug.cgi?id=144948
Patch by Sungmann Cho <[email protected]> on 2015-05-13
Reviewed by Gyuyoung Kim.
1. Remove unnecessary #include.
2. Remove unnecessary return statement from PluginProxy::paint().
No new tests, no behavior change.
* WebProcess/Plugins/PluginProxy.cpp:
(WebKit::PluginProxy::paint):
Modified Paths
Diff
Modified: trunk/Source/WebKit2/ChangeLog (184284 => 184285)
--- trunk/Source/WebKit2/ChangeLog 2015-05-13 09:23:22 UTC (rev 184284)
+++ trunk/Source/WebKit2/ChangeLog 2015-05-13 09:31:21 UTC (rev 184285)
@@ -1,3 +1,18 @@
+2015-05-13 Sungmann Cho <[email protected]>
+
+ Minor cleanups to PluginProxy.cpp.
+ https://bugs.webkit.org/show_bug.cgi?id=144948
+
+ Reviewed by Gyuyoung Kim.
+
+ 1. Remove unnecessary #include.
+ 2. Remove unnecessary return statement from PluginProxy::paint().
+
+ No new tests, no behavior change.
+
+ * WebProcess/Plugins/PluginProxy.cpp:
+ (WebKit::PluginProxy::paint):
+
2015-05-13 Daegyu Lee <[email protected]>
REGRESSION(r176631): [EFL] Fullscreen feature doesn't work correctly on MiniBrowser
Modified: trunk/Source/WebKit2/WebProcess/Plugins/PluginProxy.cpp (184284 => 184285)
--- trunk/Source/WebKit2/WebProcess/Plugins/PluginProxy.cpp 2015-05-13 09:23:22 UTC (rev 184284)
+++ trunk/Source/WebKit2/WebProcess/Plugins/PluginProxy.cpp 2015-05-13 09:31:21 UTC (rev 184285)
@@ -43,7 +43,6 @@
#include "WebProcess.h"
#include "WebProcessConnectionMessages.h"
#include <WebCore/GraphicsContext.h>
-#include <WebCore/NotImplemented.h>
#include <WebCore/SharedBuffer.h>
using namespace WebCore;
@@ -224,7 +223,6 @@
if (m_waitingForPaintInResponseToUpdate) {
m_waitingForPaintInResponseToUpdate = false;
m_connection->connection()->send(Messages::PluginControllerProxy::DidUpdate(), m_pluginInstanceID);
- return;
}
}
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes