| Index: third_party/WebKit/Source/core/inspector/InspectorCSSAgent.cpp
|
| diff --git a/third_party/WebKit/Source/core/inspector/InspectorCSSAgent.cpp b/third_party/WebKit/Source/core/inspector/InspectorCSSAgent.cpp
|
| index 78d51278aab804ddac2024f09e543a3a668923fe..6570bcf3c0080318ac4b9ae023d038ed1d73773a 100644
|
| --- a/third_party/WebKit/Source/core/inspector/InspectorCSSAgent.cpp
|
| +++ b/third_party/WebKit/Source/core/inspector/InspectorCSSAgent.cpp
|
| @@ -2329,7 +2329,7 @@ int InspectorCSSAgent::getStyleIndexForNode(
|
| .build());
|
|
|
| size_t index = styleToIndexMap.size();
|
| - styleToIndexMap.add(std::move(style), index);
|
| + styleToIndexMap.insert(std::move(style), index);
|
| return index;
|
| }
|
|
|
|
|