| Index: third_party/WebKit/Source/core/inspector/LayoutEditor.h
|
| diff --git a/third_party/WebKit/Source/core/inspector/LayoutEditor.h b/third_party/WebKit/Source/core/inspector/LayoutEditor.h
|
| index f4bb4c6b1f3f9272d53195a6a6ec6ca53a17a7ea..d93f7da17e78e17f86ddebc0c6350bc071902874 100644
|
| --- a/third_party/WebKit/Source/core/inspector/LayoutEditor.h
|
| +++ b/third_party/WebKit/Source/core/inspector/LayoutEditor.h
|
| @@ -45,14 +45,14 @@ public:
|
|
|
| private:
|
| LayoutEditor(Element*, InspectorCSSAgent*, InspectorDOMAgent*, ScriptController*);
|
| - CSSPrimitiveValue* getPropertyCSSValue(CSSPropertyID) const;
|
| + const CSSPrimitiveValue* getPropertyCSSValue(CSSPropertyID) const;
|
| std::unique_ptr<protocol::DictionaryValue> createValueDescription(const String&);
|
| void appendAnchorFor(protocol::ListValue*, const String&, const String&);
|
| bool setCSSPropertyValueInCurrentRule(const String&);
|
| void editableSelectorUpdated(bool hasChanged) const;
|
| void evaluateInOverlay(const String&, std::unique_ptr<protocol::Value>) const;
|
| std::unique_ptr<protocol::DictionaryValue> currentSelectorInfo(CSSStyleDeclaration*) const;
|
| - bool growInside(String propertyName, CSSPrimitiveValue*);
|
| + bool growInside(String propertyName, const CSSPrimitiveValue*);
|
|
|
| Member<Element> m_element;
|
| Member<InspectorCSSAgent> m_cssAgent;
|
|
|