| Index: Source/core/inspector/DOMPatchSupport.h
|
| diff --git a/Source/core/inspector/DOMPatchSupport.h b/Source/core/inspector/DOMPatchSupport.h
|
| index ed45fa5d50431df39dddcf08d62bdb4cfd767348..68872f08ddde992a0a975f501b130e0e6f3233ee 100644
|
| --- a/Source/core/inspector/DOMPatchSupport.h
|
| +++ b/Source/core/inspector/DOMPatchSupport.h
|
| @@ -59,12 +59,12 @@ public:
|
|
|
| private:
|
| struct Digest;
|
| - typedef Vector<pair<Digest*, size_t> > ResultMap;
|
| + typedef Vector<pair<Digest*, size_t>> ResultMap;
|
| typedef HashMap<String, Digest*> UnusedNodesMap;
|
|
|
| bool innerPatchNode(Digest* oldNode, Digest* newNode, ExceptionState&);
|
| - std::pair<ResultMap, ResultMap> diff(const Vector<OwnPtr<Digest> >& oldChildren, const Vector<OwnPtr<Digest> >& newChildren);
|
| - bool innerPatchChildren(ContainerNode*, const Vector<OwnPtr<Digest> >& oldChildren, const Vector<OwnPtr<Digest> >& newChildren, ExceptionState&);
|
| + std::pair<ResultMap, ResultMap> diff(const Vector<OwnPtr<Digest>>& oldChildren, const Vector<OwnPtr<Digest>>& newChildren);
|
| + bool innerPatchChildren(ContainerNode*, const Vector<OwnPtr<Digest>>& oldChildren, const Vector<OwnPtr<Digest>>& newChildren, ExceptionState&);
|
| PassOwnPtr<Digest> createDigest(Node*, UnusedNodesMap*);
|
| bool insertBeforeAndMarkAsUsed(ContainerNode*, Digest*, Node* anchor, ExceptionState&);
|
| bool removeChildAndMoveToNew(Digest*, ExceptionState&);
|
|
|