| Index: third_party/WebKit/Source/platform/v8_inspector/V8DebuggerImpl.h
|
| diff --git a/third_party/WebKit/Source/platform/v8_inspector/V8DebuggerImpl.h b/third_party/WebKit/Source/platform/v8_inspector/V8DebuggerImpl.h
|
| index 654c1203703166cf3ac075a202f2a6d068d7a669..ec39df7a92b5b63773d7b3afe9737587294a9b1c 100644
|
| --- a/third_party/WebKit/Source/platform/v8_inspector/V8DebuggerImpl.h
|
| +++ b/third_party/WebKit/Source/platform/v8_inspector/V8DebuggerImpl.h
|
| @@ -121,9 +121,6 @@ public:
|
| void disconnect(V8InspectorSessionImpl*);
|
| V8InspectorSessionImpl* sessionForContextGroup(int contextGroupId);
|
|
|
| - v8::MaybeLocal<v8::FunctionTemplate> functionTemplate(const String16& name);
|
| - void setFunctionTemplate(const String16& name, v8::Local<v8::FunctionTemplate>);
|
| -
|
| private:
|
| void enable();
|
| void disable();
|
| @@ -155,15 +152,12 @@ private:
|
| SessionMap m_sessions;
|
| int m_enabledAgentsCount;
|
| bool m_breakpointsActivated;
|
| - v8::Global<v8::FunctionTemplate> m_breakProgramCallbackTemplate;
|
| v8::Global<v8::Object> m_debuggerScript;
|
| v8::Global<v8::Context> m_debuggerContext;
|
| v8::Local<v8::Object> m_executionState;
|
| v8::Local<v8::Context> m_pausedContext;
|
| bool m_runningNestedMessageLoop;
|
| v8::Global<v8::Context> m_regexContext;
|
| - using FunctionTemplateMap = protocol::HashMap<String16, OwnPtr<v8::Global<v8::FunctionTemplate>>>;
|
| - FunctionTemplateMap m_templates;
|
| };
|
|
|
| } // namespace blink
|
|
|