| Index: Source/core/inspector/LayoutEditor.h
|
| diff --git a/Source/core/inspector/LayoutEditor.h b/Source/core/inspector/LayoutEditor.h
|
| index dcf5c7063171a34108b03af4955a6639d580fb3f..29c25cf7c4c1f8852a00a600a9a528f7469406ff 100644
|
| --- a/Source/core/inspector/LayoutEditor.h
|
| +++ b/Source/core/inspector/LayoutEditor.h
|
| @@ -9,7 +9,6 @@
|
| #include "core/CoreExport.h"
|
| #include "core/css/CSSPrimitiveValue.h"
|
| #include "core/dom/Node.h"
|
| -#include "core/inspector/InspectorOverlayHost.h"
|
| #include "platform/heap/Handle.h"
|
| #include "wtf/PassOwnPtr.h"
|
| #include "wtf/RefPtr.h"
|
| @@ -22,7 +21,7 @@ class InspectorCSSAgent;
|
| class JSONArray;
|
| class JSONObject;
|
|
|
| -class CORE_EXPORT LayoutEditor final: public NoBaseWillBeGarbageCollectedFinalized<LayoutEditor>, public InspectorOverlayHost::LayoutEditorListener {
|
| +class CORE_EXPORT LayoutEditor final: public NoBaseWillBeGarbageCollectedFinalized<LayoutEditor> {
|
| WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(LayoutEditor);
|
| public:
|
| static PassOwnPtrWillBeRawPtr<LayoutEditor> create(InspectorCSSAgent* cssAgent)
|
| @@ -32,6 +31,9 @@ public:
|
|
|
| void setNode(Node*);
|
| PassRefPtr<JSONObject> buildJSONInfo() const;
|
| + void overlayStartedPropertyChange(const String&);
|
| + void overlayPropertyChanged(float);
|
| + void overlayEndedPropertyChange();
|
|
|
| DECLARE_VIRTUAL_TRACE();
|
|
|
| @@ -41,11 +43,6 @@ private:
|
| PassRefPtr<JSONObject> createValueDescription(const String&) const;
|
| void appendAnchorFor(JSONArray*, const String&, const String&, const FloatPoint&, const FloatPoint&) const;
|
|
|
| - // InspectorOverlayHost::LayoutEditorListener implementation.
|
| - void overlayStartedPropertyChange(const String&) override;
|
| - void overlayPropertyChanged(float) override;
|
| - void overlayEndedPropertyChange() override;
|
| -
|
| RefPtrWillBeMember<Element> m_element;
|
| RawPtrWillBeMember<InspectorCSSAgent> m_cssAgent;
|
| CSSPropertyID m_changingProperty;
|
|
|