| Index: third_party/WebKit/Source/platform/Length.cpp
|
| diff --git a/third_party/WebKit/Source/platform/Length.cpp b/third_party/WebKit/Source/platform/Length.cpp
|
| index a2296baf62f6d15f08de284a4cf1a09f14232fea..a6d15756a8abbb850b9d56530ebbbb7b55319fb3 100644
|
| --- a/third_party/WebKit/Source/platform/Length.cpp
|
| +++ b/third_party/WebKit/Source/platform/Length.cpp
|
| @@ -59,12 +59,12 @@ class CalculationValueHandleMap {
|
|
|
| CalculationValue& get(int index) {
|
| ASSERT(m_map.contains(index));
|
| - return *m_map.get(index);
|
| + return *m_map.at(index);
|
| }
|
|
|
| void decrementRef(int index) {
|
| ASSERT(m_map.contains(index));
|
| - CalculationValue* value = m_map.get(index);
|
| + CalculationValue* value = m_map.at(index);
|
| if (value->hasOneRef()) {
|
| // Force the CalculationValue destructor early to avoid a potential
|
| // recursive call inside HashMap remove().
|
|
|