Changeset 185677 in webkit
- Timestamp:
- Jun 17, 2015, 4:38:39 PM (11 years ago)
- Location:
- trunk/Source/WebKit2
- Files:
-
- 6 edited
-
ChangeLog (modified) (1 diff)
-
PluginProcess/PluginControllerProxy.cpp (modified) (1 diff)
-
PluginProcess/PluginControllerProxy.h (modified) (1 diff)
-
WebProcess/Plugins/PluginController.h (modified) (1 diff)
-
WebProcess/Plugins/PluginView.cpp (modified) (1 diff)
-
WebProcess/Plugins/PluginView.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit2/ChangeLog
r185673 r185677 1 2015-06-17 Sungmann Cho <sungmann.cho@navercorp.com> 2 3 Remove willSendEventToPlugin() from PluginController.h. 4 https://bugs.webkit.org/show_bug.cgi?id=146054 5 6 Reviewed by Darin Adler. 7 8 PluginController::willSendEventToPlugin() was introduced by http://webkit.org/b/59124. 9 This method had been used only for WebKit2 on Windows, and no one uses it now. 10 So we can remove it. 11 12 No new tests, no behavior change. 13 14 * PluginProcess/PluginControllerProxy.cpp: 15 (WebKit::PluginControllerProxy::willSendEventToPlugin): Deleted. 16 * PluginProcess/PluginControllerProxy.h: 17 * WebProcess/Plugins/PluginController.h: 18 * WebProcess/Plugins/PluginView.cpp: 19 (WebKit::PluginView::willSendEventToPlugin): Deleted. 20 * WebProcess/Plugins/PluginView.h: 21 1 22 2015-06-17 Tim Horton <timothy_horton@apple.com> 2 23 -
trunk/Source/WebKit2/PluginProcess/PluginControllerProxy.cpp
r182892 r185677 326 326 } 327 327 328 void PluginControllerProxy::willSendEventToPlugin()329 {330 // This is only used when running plugins in the web process.331 ASSERT_NOT_REACHED();332 }333 334 328 void PluginControllerProxy::didInitializePlugin() 335 329 { -
trunk/Source/WebKit2/PluginProcess/PluginControllerProxy.h
r182892 r185677 96 96 virtual bool isAcceleratedCompositingEnabled() override; 97 97 virtual void pluginProcessCrashed() override; 98 virtual void willSendEventToPlugin() override;99 98 virtual void didInitializePlugin() override; 100 99 virtual void didFailToInitializePlugin() override; -
trunk/Source/WebKit2/WebProcess/Plugins/PluginController.h
r182892 r185677 96 96 // Tells the controller that the plug-in process has crashed. 97 97 virtual void pluginProcessCrashed() = 0; 98 99 // Tells the controller that we're about to dispatch an event to the plug-in. 100 virtual void willSendEventToPlugin() = 0; 101 98 102 99 #if PLATFORM(COCOA) 103 100 // Tells the controller that the plug-in focus or window focus did change. -
trunk/Source/WebKit2/WebProcess/Plugins/PluginView.cpp
r185111 r185677 1516 1516 } 1517 1517 1518 void PluginView::willSendEventToPlugin()1519 {1520 // If we're sending an event to a plug-in, we can't control how long the plug-in1521 // takes to process it (e.g. it may display a context menu), so we tell the UI process1522 // to stop the responsiveness timer in this case.1523 m_webPage->send(Messages::WebPageProxy::StopResponsivenessTimer());1524 }1525 1526 1518 #if PLATFORM(COCOA) 1527 1519 void PluginView::pluginFocusOrWindowFocusChanged(bool pluginHasFocusAndWindowHasFocus) -
trunk/Source/WebKit2/WebProcess/Plugins/PluginView.h
r183372 r185677 208 208 virtual bool isAcceleratedCompositingEnabled() override; 209 209 virtual void pluginProcessCrashed() override; 210 virtual void willSendEventToPlugin() override;211 210 #if PLATFORM(COCOA) 212 211 virtual void pluginFocusOrWindowFocusChanged(bool pluginHasFocusAndWindowHasFocus) override;
Note:
See TracChangeset
for help on using the changeset viewer.