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

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

Issue 1311783003: Devtools[LayoutEditor]: Rework layout-editor workflow (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@resize
Patch Set: Rebase on dgozman changes Created 5 years, 4 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/InspectorOverlayHost.cpp
diff --git a/Source/core/inspector/InspectorOverlayHost.cpp b/Source/core/inspector/InspectorOverlayHost.cpp
index d14c52e251c43c64b48b8a6186ed067eacc64d33..a0bbc7fe116e2d5ec789340f560de8016ce1110f 100644
--- a/Source/core/inspector/InspectorOverlayHost.cpp
+++ b/Source/core/inspector/InspectorOverlayHost.cpp
@@ -71,6 +71,12 @@ void InspectorOverlayHost::endPropertyChange()
m_listener->overlayEndedPropertyChange();
}
+void InspectorOverlayHost::clearSelection(bool commitChanges)
+{
+ if (m_listener)
+ m_listener->clearSelection(commitChanges);
+}
+
DEFINE_TRACE(InspectorOverlayHost)
{
visitor->trace(m_listener);

Powered by Google App Engine
This is Rietveld 408576698