Changeset 31304 in webkit
- Timestamp:
- Mar 25, 2008, 6:32:44 PM (17 years ago)
- Location:
- trunk/WebCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/WebCore/ChangeLog
r31303 r31304 1 2008-03-25 Matt Lilek <webkit@mattlilek.com> 2 3 Rubber stamped by Adam 4 5 Roll out r30300 since it causes assertion failures on page load. 6 See http://bugs.webkit.org/show_bug.cgi?id=18093 7 8 * page/InspectorController.cpp: 9 (WebCore::InspectorController::didFinishLoading): 10 (WebCore::InspectorController::didFailLoading): 11 1 12 2008-03-25 Darin Adler <darin@apple.com> 2 13 -
trunk/WebCore/page/InspectorController.cpp
r31300 r31304 1575 1575 return; 1576 1576 1577 InspectorResource* resource = m_resources.get(identifier).get();1577 RefPtr<InspectorResource> resource = m_resources.get(identifier); 1578 1578 if (!resource) 1579 1579 return; 1580 1580 1581 removeResource(resource );1581 removeResource(resource.get()); 1582 1582 1583 1583 resource->finished = true; 1584 1584 resource->endTime = currentTime(); 1585 1585 1586 addResource(resource );1586 addResource(resource.get()); 1587 1587 1588 1588 if (windowVisible() && resource->scriptObject) { 1589 updateScriptResource(resource , resource->startTime, resource->responseReceivedTime, resource->endTime);1590 updateScriptResource(resource , resource->finished);1589 updateScriptResource(resource.get(), resource->startTime, resource->responseReceivedTime, resource->endTime); 1590 updateScriptResource(resource.get(), resource->finished); 1591 1591 } 1592 1592 } … … 1597 1597 return; 1598 1598 1599 InspectorResource* resource = m_resources.get(identifier).get();1599 RefPtr<InspectorResource> resource = m_resources.get(identifier); 1600 1600 if (!resource) 1601 1601 return; 1602 1602 1603 removeResource(resource );1603 removeResource(resource.get()); 1604 1604 1605 1605 resource->finished = true; … … 1607 1607 resource->endTime = currentTime(); 1608 1608 1609 addResource(resource );1609 addResource(resource.get()); 1610 1610 1611 1611 if (windowVisible() && resource->scriptObject) { 1612 updateScriptResource(resource , resource->startTime, resource->responseReceivedTime, resource->endTime);1613 updateScriptResource(resource , resource->finished, resource->failed);1612 updateScriptResource(resource.get(), resource->startTime, resource->responseReceivedTime, resource->endTime); 1613 updateScriptResource(resource.get(), resource->finished, resource->failed); 1614 1614 } 1615 1615 }
Note:
See TracChangeset
for help on using the changeset viewer.