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

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

Issue 2421983002: [DevTools] Remove layout editor experiment. (Closed)
Patch Set: rebased Created 4 years 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: third_party/WebKit/Source/core/inspector/InspectorOverlayHost.h
diff --git a/third_party/WebKit/Source/core/inspector/InspectorOverlayHost.h b/third_party/WebKit/Source/core/inspector/InspectorOverlayHost.h
index 5e7c47132e9207a6c6888543da1c9f7512fc2518..06ad32af54f4374ee04f68175ac80ed26d939ccb 100644
--- a/third_party/WebKit/Source/core/inspector/InspectorOverlayHost.h
+++ b/third_party/WebKit/Source/core/inspector/InspectorOverlayHost.h
@@ -45,24 +45,12 @@ class CORE_EXPORT InspectorOverlayHost final
void resume();
void stepOver();
- void startPropertyChange(const String&);
- void changeProperty(float delta);
- void endPropertyChange();
- void clearSelection(bool commitChanges);
- void nextSelector();
- void previousSelector();
class Listener : public GarbageCollectedMixin {
public:
virtual ~Listener() {}
virtual void overlayResumed() = 0;
virtual void overlaySteppedOver() = 0;
- virtual void overlayStartedPropertyChange(const String&) = 0;
- virtual void overlayPropertyChanged(float cssDelta) = 0;
- virtual void overlayEndedPropertyChange() = 0;
- virtual void overlayClearSelection(bool commitChanges) = 0;
- virtual void overlayNextSelector() = 0;
- virtual void overlayPreviousSelector() = 0;
};
void setListener(Listener* listener) { m_listener = listener; }

Powered by Google App Engine
This is Rietveld 408576698