| Index: third_party/WebKit/WebCore/dom/NamedAttrMap.h
|
| ===================================================================
|
| --- third_party/WebKit/WebCore/dom/NamedAttrMap.h (revision 9118)
|
| +++ third_party/WebKit/WebCore/dom/NamedAttrMap.h (working copy)
|
| @@ -52,7 +52,7 @@
|
| Attribute* getAttributeItem(const QualifiedName&) const;
|
|
|
| void shrinkToLength() { m_attributes.shrinkCapacity(length()); }
|
| - void reserveCapacity(unsigned capacity) { m_attributes.reserveCapacity(capacity); }
|
| + void reserveInitialCapacity(unsigned capacity) { m_attributes.reserveInitialCapacity(capacity); }
|
|
|
| // used during parsing: only inserts if not already there
|
| // no error checking!
|
|
|