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

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

Issue 1317913004: Devtools [LayoutEditor]: show selector info and highlight affected nodes (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@cursor2
Patch Set: Address comments Created 5 years, 3 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
« no previous file with comments | « no previous file | Source/core/inspector/InspectorOverlayHost.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/inspector/InspectorOverlayHost.h
diff --git a/Source/core/inspector/InspectorOverlayHost.h b/Source/core/inspector/InspectorOverlayHost.h
index b2a837964e2cf857ab5b74bf32c25a2d858b28b5..425db8cd38255c85eb33e617a95e0b81b5215998 100644
--- a/Source/core/inspector/InspectorOverlayHost.h
+++ b/Source/core/inspector/InspectorOverlayHost.h
@@ -52,6 +52,9 @@ public:
void changeProperty(float delta);
void endPropertyChange();
void clearSelection(bool commitChanges);
+ void nextSelector();
+ void previousSelector();
+ String currentSelectorInfo();
class Listener : public WillBeGarbageCollectedMixin {
public:
@@ -62,6 +65,9 @@ public:
virtual void overlayPropertyChanged(float cssDelta) = 0;
virtual void overlayEndedPropertyChange() = 0;
virtual void overlayClearSelection(bool commitChanges) = 0;
+ virtual void overlayNextSelector() = 0;
+ virtual void overlayPreviousSelector() = 0;
+ virtual String overlayCurrentSelectorInfo() = 0;
};
void setListener(Listener* listener) { m_listener = listener; }
« no previous file with comments | « no previous file | Source/core/inspector/InspectorOverlayHost.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698