Changeset 181636 in webkit
- Timestamp:
- Mar 17, 2015, 4:46:54 AM (11 years ago)
- Location:
- releases/WebKitGTK/webkit-2.8/Source/WebKit2
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
WebProcess/Plugins/PluginView.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
releases/WebKitGTK/webkit-2.8/Source/WebKit2/ChangeLog
r181633 r181636 1 2015-03-16 Alexey Proskuryakov <ap@apple.com> 2 3 ASSERT(m_plugin) on plugins/snapshotting/snapshot-plugin-not-quite-blocked-by-image.html 4 https://bugs.webkit.org/show_bug.cgi?id=142637 5 6 Reviewed by Dean Jackson. 7 8 * WebProcess/Plugins/PluginView.cpp: (WebKit::PluginView::pluginSnapshotTimerFired): 9 m_plugin can be legitimately null. 10 1 11 2015-03-16 Carlos Garcia Campos <cgarcia@igalia.com> 2 12 -
releases/WebKitGTK/webkit-2.8/Source/WebKit2/WebProcess/Plugins/PluginView.cpp
r180115 r181636 1739 1739 void PluginView::pluginSnapshotTimerFired() 1740 1740 { 1741 ASSERT(m_plugin);1742 1743 1741 #if ENABLE(PRIMARY_SNAPSHOTTED_PLUGIN_HEURISTIC) 1744 1742 HTMLPlugInImageElement& plugInImageElement = downcast<HTMLPlugInImageElement>(*m_pluginElement); … … 1748 1746 #endif 1749 1747 1750 if (m_plugin ->supportsSnapshotting()) {1748 if (m_plugin && m_plugin->supportsSnapshotting()) { 1751 1749 // Snapshot might be 0 if plugin size is 0x0. 1752 1750 RefPtr<ShareableBitmap> snapshot = m_plugin->snapshot();
Note:
See TracChangeset
for help on using the changeset viewer.