| Index: third_party/WebKit/Source/modules/csspaint/PaintWorkletGlobalScope.cpp
|
| diff --git a/third_party/WebKit/Source/modules/csspaint/PaintWorkletGlobalScope.cpp b/third_party/WebKit/Source/modules/csspaint/PaintWorkletGlobalScope.cpp
|
| index 5836b132fa088c0e516184d9ab03338445434abf..34f73530750c6793cc66d5732fa04e0f94bf6663 100644
|
| --- a/third_party/WebKit/Source/modules/csspaint/PaintWorkletGlobalScope.cpp
|
| +++ b/third_party/WebKit/Source/modules/csspaint/PaintWorkletGlobalScope.cpp
|
| @@ -189,7 +189,7 @@ void PaintWorkletGlobalScope::registerPaint(const String& name,
|
| m_paintDefinitions.set(name, definition);
|
|
|
| // Set the definition on any pending generators.
|
| - GeneratorHashSet* set = m_pendingGenerators.get(name);
|
| + GeneratorHashSet* set = m_pendingGenerators.at(name);
|
| if (set) {
|
| for (const auto& generator : *set) {
|
| if (generator) {
|
| @@ -202,7 +202,7 @@ void PaintWorkletGlobalScope::registerPaint(const String& name,
|
|
|
| CSSPaintDefinition* PaintWorkletGlobalScope::findDefinition(
|
| const String& name) {
|
| - return m_paintDefinitions.get(name);
|
| + return m_paintDefinitions.at(name);
|
| }
|
|
|
| void PaintWorkletGlobalScope::addPendingGenerator(
|
|
|