Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(63)

Side by Side Diff: third_party/WebKit/Source/core/svg/SVGElement.cpp

Issue 1844223002: Literal AtomicString construction can rely on strlen optimization. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Nikolas Zimmermann <zimmermann@kde .org> 2 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Nikolas Zimmermann <zimmermann@kde .org>
3 * Copyright (C) 2004, 2005, 2006, 2008 Rob Buis <buis@kde.org> 3 * Copyright (C) 2004, 2005, 2006, 2008 Rob Buis <buis@kde.org>
4 * Copyright (C) 2008 Apple Inc. All rights reserved. 4 * Copyright (C) 2008 Apple Inc. All rights reserved.
5 * Copyright (C) 2008 Alp Toker <alp@atoker.com> 5 * Copyright (C) 2008 Alp Toker <alp@atoker.com>
6 * Copyright (C) 2009 Cameron McCormack <cam@mcc.id.au> 6 * Copyright (C) 2009 Cameron McCormack <cam@mcc.id.au>
7 * 7 *
8 * This library is free software; you can redistribute it and/or 8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Library General Public 9 * modify it under the terms of the GNU Library General Public
10 * License as published by the Free Software Foundation; either 10 * License as published by the Free Software Foundation; either
(...skipping 1205 matching lines...) Expand 10 before | Expand all | Expand 10 after
1216 visitor->trace(m_elementsWithRelativeLengths); 1216 visitor->trace(m_elementsWithRelativeLengths);
1217 visitor->trace(m_attributeToPropertyMap); 1217 visitor->trace(m_attributeToPropertyMap);
1218 visitor->trace(m_SVGRareData); 1218 visitor->trace(m_SVGRareData);
1219 visitor->trace(m_className); 1219 visitor->trace(m_className);
1220 #endif 1220 #endif
1221 Element::trace(visitor); 1221 Element::trace(visitor);
1222 } 1222 }
1223 1223
1224 const AtomicString& SVGElement::eventParameterName() 1224 const AtomicString& SVGElement::eventParameterName()
1225 { 1225 {
1226 DEFINE_STATIC_LOCAL(const AtomicString, evtString, ("evt", AtomicString::Con structFromLiteral)); 1226 DEFINE_STATIC_LOCAL(const AtomicString, evtString, ("evt"));
1227 return evtString; 1227 return evtString;
1228 } 1228 }
1229 1229
1230 } // namespace blink 1230 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698