Changeset 31300 in webkit
- Timestamp:
- Mar 25, 2008, 4:43:29 PM (17 years ago)
- Location:
- trunk/WebCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/WebCore/ChangeLog
r31299 r31300 1 2008-03-25 Kevin McCullough <kmccullough@apple.com> 2 3 Reviewed by Adam. 4 5 - Cleaned up the needless use of RefPtrs, which we may someday no longer use for 6 InspectorResources. 7 8 * page/InspectorController.cpp: 9 (WebCore::InspectorController::didFinishLoading): 10 (WebCore::InspectorController::didFailLoading): 11 1 12 2008-03-25 Kevin McCullough <kmccullough@apple.com> 2 13 -
trunk/WebCore/page/InspectorController.cpp
r31298 r31300 1575 1575 return; 1576 1576 1577 RefPtr<InspectorResource> resource = m_resources.get(identifier);1577 InspectorResource* resource = m_resources.get(identifier).get(); 1578 1578 if (!resource) 1579 1579 return; 1580 1580 1581 removeResource(resource .get());1581 removeResource(resource); 1582 1582 1583 1583 resource->finished = true; 1584 1584 resource->endTime = currentTime(); 1585 1585 1586 addResource(resource .get());1586 addResource(resource); 1587 1587 1588 1588 if (windowVisible() && resource->scriptObject) { 1589 updateScriptResource(resource .get(), resource->startTime, resource->responseReceivedTime, resource->endTime);1590 updateScriptResource(resource .get(), resource->finished);1589 updateScriptResource(resource, resource->startTime, resource->responseReceivedTime, resource->endTime); 1590 updateScriptResource(resource, resource->finished); 1591 1591 } 1592 1592 } … … 1597 1597 return; 1598 1598 1599 RefPtr<InspectorResource> resource = m_resources.get(identifier);1599 InspectorResource* resource = m_resources.get(identifier).get(); 1600 1600 if (!resource) 1601 1601 return; 1602 1602 1603 removeResource(resource .get());1603 removeResource(resource); 1604 1604 1605 1605 resource->finished = true; … … 1607 1607 resource->endTime = currentTime(); 1608 1608 1609 addResource(resource .get());1609 addResource(resource); 1610 1610 1611 1611 if (windowVisible() && resource->scriptObject) { 1612 updateScriptResource(resource .get(), resource->startTime, resource->responseReceivedTime, resource->endTime);1613 updateScriptResource(resource .get(), resource->finished, resource->failed);1612 updateScriptResource(resource, resource->startTime, resource->responseReceivedTime, resource->endTime); 1613 updateScriptResource(resource, resource->finished, resource->failed); 1614 1614 } 1615 1615 }
Note:
See TracChangeset
for help on using the changeset viewer.