| Index: third_party/WebKit/Source/core/css/RuleSet.h
|
| diff --git a/third_party/WebKit/Source/core/css/RuleSet.h b/third_party/WebKit/Source/core/css/RuleSet.h
|
| index 64274306cf0017fc23ac5ab2eff46d5edbec20fc..51968fcef2c6ad4816847e85d8c2a1ee41402638 100644
|
| --- a/third_party/WebKit/Source/core/css/RuleSet.h
|
| +++ b/third_party/WebKit/Source/core/css/RuleSet.h
|
| @@ -160,21 +160,21 @@ class CORE_EXPORT RuleSet : public GarbageCollectedFinalized<RuleSet> {
|
|
|
| const HeapTerminatedArray<RuleData>* idRules(const AtomicString& key) const {
|
| ASSERT(!m_pendingRules);
|
| - return m_idRules.get(key);
|
| + return m_idRules.at(key);
|
| }
|
| const HeapTerminatedArray<RuleData>* classRules(
|
| const AtomicString& key) const {
|
| ASSERT(!m_pendingRules);
|
| - return m_classRules.get(key);
|
| + return m_classRules.at(key);
|
| }
|
| const HeapTerminatedArray<RuleData>* tagRules(const AtomicString& key) const {
|
| ASSERT(!m_pendingRules);
|
| - return m_tagRules.get(key);
|
| + return m_tagRules.at(key);
|
| }
|
| const HeapTerminatedArray<RuleData>* shadowPseudoElementRules(
|
| const AtomicString& key) const {
|
| ASSERT(!m_pendingRules);
|
| - return m_shadowPseudoElementRules.get(key);
|
| + return m_shadowPseudoElementRules.at(key);
|
| }
|
| const HeapVector<RuleData>* linkPseudoClassRules() const {
|
| ASSERT(!m_pendingRules);
|
|
|