| Index: Source/core/inspector/InspectorHighlight.cpp
|
| diff --git a/Source/core/inspector/InspectorHighlight.cpp b/Source/core/inspector/InspectorHighlight.cpp
|
| index cc0a7373ce6607c0c57c7170d6ac392cdbd9ed8e..8ec26f01d07a3a4b1c5ef0a5ad0c00c86794a7c1 100644
|
| --- a/Source/core/inspector/InspectorHighlight.cpp
|
| +++ b/Source/core/inspector/InspectorHighlight.cpp
|
| @@ -261,7 +261,7 @@ PassRefPtr<JSONObject> buildElementInfo(Element* element)
|
|
|
| // Render the getBoundingClientRect() data in the tooltip
|
| // to be consistent with the rulers (see http://crbug.com/262338).
|
| - RefPtrWillBeRawPtr<ClientRect> boundingBox = element->getBoundingClientRect();
|
| + ClientRect* boundingBox = element->getBoundingClientRect();
|
| elementInfo->setString("nodeWidth", String::number(boundingBox->width()));
|
| elementInfo->setString("nodeHeight", String::number(boundingBox->height()));
|
|
|
|
|