Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1048)

Unified Diff: Source/core/inspector/InspectorController.cpp

Issue 237313003: CSS shapes support in Web Inspector (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Corrected wrong if statement condition Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/core/inspector/InspectorController.cpp
diff --git a/Source/core/inspector/InspectorController.cpp b/Source/core/inspector/InspectorController.cpp
index 7fc638915d4fe0626162176bddbf0c1b28e14337..701f2c1974d40902d5ffa1b47d712435a0529487 100644
--- a/Source/core/inspector/InspectorController.cpp
+++ b/Source/core/inspector/InspectorController.cpp
@@ -489,4 +489,9 @@ void InspectorController::didRemovePageOverlay(const GraphicsLayer* layer)
m_layerTreeAgent->didRemovePageOverlay(layer);
}
+PassRefPtr<JSONObject> InspectorController::buildObjectForShapeOutside(LocalFrame *frame, RenderBox *box) const
+{
+ return m_overlay->buildObjectForShapeOutside(frame, box);
+}
+
} // namespace WebCore

Powered by Google App Engine
This is Rietveld 408576698