| Index: third_party/WebKit/Source/platform/v8_inspector/V8InspectorImpl.h
|
| diff --git a/third_party/WebKit/Source/platform/v8_inspector/V8InspectorImpl.h b/third_party/WebKit/Source/platform/v8_inspector/V8InspectorImpl.h
|
| index a27675f0b173180af7f4ad9c512ffa9837be9a90..1b7c75459642f191094350a0e65ce16e91aaabad 100644
|
| --- a/third_party/WebKit/Source/platform/v8_inspector/V8InspectorImpl.h
|
| +++ b/third_party/WebKit/Source/platform/v8_inspector/V8InspectorImpl.h
|
| @@ -87,6 +87,8 @@ public:
|
|
|
| void enableStackCapturingIfNeeded();
|
| void disableStackCapturingIfNeeded();
|
| + void muteExceptions(int contextGroupId);
|
| + void unmuteExceptions(int contextGroupId);
|
| V8ConsoleMessageStorage* ensureConsoleMessageStorage(int contextGroupId);
|
| using ContextByIdMap = protocol::HashMap<int, std::unique_ptr<InspectedContext>>;
|
| void discardInspectedContext(int contextGroupId, int contextId);
|
| @@ -105,6 +107,9 @@ private:
|
| int m_capturingStackTracesCount;
|
| unsigned m_lastExceptionId;
|
|
|
| + using MuteExceptionsMap = protocol::HashMap<int, int>;
|
| + MuteExceptionsMap m_muteExceptionsMap;
|
| +
|
| using ContextsByGroupMap = protocol::HashMap<int, std::unique_ptr<ContextByIdMap>>;
|
| ContextsByGroupMap m_contexts;
|
|
|
|
|