Changeset 181599 in webkit
- Timestamp:
- Mar 16, 2015, 4:58:15 PM (11 years ago)
- Location:
- trunk/Source/WebKit2
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
WebProcess/Plugins/PluginView.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit2/ChangeLog
r181584 r181599 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 Csaba Osztrogonác <ossy@webkit.org> 2 12 -
trunk/Source/WebKit2/WebProcess/Plugins/PluginView.cpp
r181514 r181599 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.