| Index: third_party/WebKit/Source/core/dom/DocumentOrderedMap.h
|
| diff --git a/third_party/WebKit/Source/core/dom/DocumentOrderedMap.h b/third_party/WebKit/Source/core/dom/DocumentOrderedMap.h
|
| index db75cd6cfad3a36a49878fcea84f5bc4e31d082b..e4c311633288140eae0884d907f5798a293950a7 100644
|
| --- a/third_party/WebKit/Source/core/dom/DocumentOrderedMap.h
|
| +++ b/third_party/WebKit/Source/core/dom/DocumentOrderedMap.h
|
| @@ -68,7 +68,11 @@ private:
|
|
|
| class MapEntry : public NoBaseWillBeGarbageCollected<MapEntry> {
|
| public:
|
| - explicit MapEntry(Element*);
|
| + explicit MapEntry(Element* firstElement)
|
| + : element(firstElement)
|
| + , count(1)
|
| + {
|
| + }
|
|
|
| DECLARE_TRACE();
|
|
|
|
|