| Index: third_party/WebKit/Source/core/inspector/InspectorLogAgent.cpp
|
| diff --git a/third_party/WebKit/Source/core/inspector/InspectorLogAgent.cpp b/third_party/WebKit/Source/core/inspector/InspectorLogAgent.cpp
|
| index afc43d59f3b1afbe7be35f85275c3fb5d047ba36..79b829ee754791055b807876614e49c488a17437 100644
|
| --- a/third_party/WebKit/Source/core/inspector/InspectorLogAgent.cpp
|
| +++ b/third_party/WebKit/Source/core/inspector/InspectorLogAgent.cpp
|
| @@ -173,6 +173,10 @@ static PerformanceMonitor::Violation parseViolation(const String& name) {
|
| return PerformanceMonitor::kBlockedEvent;
|
| if (name == ViolationSetting::NameEnum::BlockedParser)
|
| return PerformanceMonitor::kBlockedParser;
|
| + if (name == ViolationSetting::NameEnum::Handler)
|
| + return PerformanceMonitor::kHandler;
|
| + if (name == ViolationSetting::NameEnum::RecurringHandler)
|
| + return PerformanceMonitor::kRecurringHandler;
|
| return PerformanceMonitor::kAfterLast;
|
| }
|
|
|
|
|