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

Side by Side Diff: Source/core/dom/ElementDataCache.cpp

Issue 354023008: Move attributes-related methods from ElementData to AttributeCollection (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Take feedback into consideration Created 6 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/dom/ElementData.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2012, 2013 Apple Inc. All Rights Reserved. 2 * Copyright (C) 2012, 2013 Apple Inc. All Rights Reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 20 matching lines...) Expand all
31 31
32 namespace WebCore { 32 namespace WebCore {
33 33
34 inline unsigned attributeHash(const Vector<Attribute>& attributes) 34 inline unsigned attributeHash(const Vector<Attribute>& attributes)
35 { 35 {
36 return StringHasher::hashMemory(attributes.data(), attributes.size() * sizeo f(Attribute)); 36 return StringHasher::hashMemory(attributes.data(), attributes.size() * sizeo f(Attribute));
37 } 37 }
38 38
39 inline bool hasSameAttributes(const Vector<Attribute>& attributes, ShareableElem entData& elementData) 39 inline bool hasSameAttributes(const Vector<Attribute>& attributes, ShareableElem entData& elementData)
40 { 40 {
41 if (attributes.size() != elementData.attributeCount()) 41 if (attributes.size() != elementData.attributes().size())
42 return false; 42 return false;
43 return !memcmp(attributes.data(), elementData.m_attributeArray, attributes.s ize() * sizeof(Attribute)); 43 return !memcmp(attributes.data(), elementData.m_attributeArray, attributes.s ize() * sizeof(Attribute));
44 } 44 }
45 45
46 PassRefPtrWillBeRawPtr<ShareableElementData> ElementDataCache::cachedShareableEl ementDataWithAttributes(const Vector<Attribute>& attributes) 46 PassRefPtrWillBeRawPtr<ShareableElementData> ElementDataCache::cachedShareableEl ementDataWithAttributes(const Vector<Attribute>& attributes)
47 { 47 {
48 ASSERT(!attributes.isEmpty()); 48 ASSERT(!attributes.isEmpty());
49 49
50 ShareableElementDataCache::ValueType* it = m_shareableElementDataCache.add(a ttributeHash(attributes), nullptr).storedValue; 50 ShareableElementDataCache::ValueType* it = m_shareableElementDataCache.add(a ttributeHash(attributes), nullptr).storedValue;
51 51
52 // FIXME: This prevents sharing when there's a hash collision. 52 // FIXME: This prevents sharing when there's a hash collision.
53 if (it->value && !hasSameAttributes(attributes, *it->value)) 53 if (it->value && !hasSameAttributes(attributes, *it->value))
54 return ShareableElementData::createWithAttributes(attributes); 54 return ShareableElementData::createWithAttributes(attributes);
55 55
56 if (!it->value) 56 if (!it->value)
57 it->value = ShareableElementData::createWithAttributes(attributes); 57 it->value = ShareableElementData::createWithAttributes(attributes);
58 58
59 return it->value.get(); 59 return it->value.get();
60 } 60 }
61 61
62 ElementDataCache::ElementDataCache() 62 ElementDataCache::ElementDataCache()
63 { 63 {
64 } 64 }
65 65
66 ElementDataCache::~ElementDataCache() 66 ElementDataCache::~ElementDataCache()
67 { 67 {
68 } 68 }
69 69
70 } 70 }
OLDNEW
« no previous file with comments | « Source/core/dom/ElementData.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698