| 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 1ccdffb8ce0a0d30710a51da5e53a4dff7891a6c..f4bb4c6b1f3f9272d53195a6a6ec6ca53a17a7ea 100644
|
| --- a/third_party/WebKit/Source/core/inspector/LayoutEditor.h
|
| +++ b/third_party/WebKit/Source/core/inspector/LayoutEditor.h
|
| @@ -46,12 +46,12 @@ public:
|
| private:
|
| LayoutEditor(Element*, InspectorCSSAgent*, InspectorDOMAgent*, ScriptController*);
|
| CSSPrimitiveValue* getPropertyCSSValue(CSSPropertyID) const;
|
| - PassOwnPtr<protocol::DictionaryValue> createValueDescription(const String&);
|
| + 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&, PassOwnPtr<protocol::Value>) const;
|
| - PassOwnPtr<protocol::DictionaryValue> currentSelectorInfo(CSSStyleDeclaration*) const;
|
| + void evaluateInOverlay(const String&, std::unique_ptr<protocol::Value>) const;
|
| + std::unique_ptr<protocol::DictionaryValue> currentSelectorInfo(CSSStyleDeclaration*) const;
|
| bool growInside(String propertyName, CSSPrimitiveValue*);
|
|
|
| Member<Element> m_element;
|
|
|