| Index: third_party/WebKit/Source/platform/v8_inspector/V8StackTraceImpl.h
|
| diff --git a/third_party/WebKit/Source/platform/v8_inspector/V8StackTraceImpl.h b/third_party/WebKit/Source/platform/v8_inspector/V8StackTraceImpl.h
|
| index 77f07546209278472b51c1f0dff13f2e37ba21bd..63b59e8d9009b3777dfe7239a9b02bfa197bf1d8 100644
|
| --- a/third_party/WebKit/Source/platform/v8_inspector/V8StackTraceImpl.h
|
| +++ b/third_party/WebKit/Source/platform/v8_inspector/V8StackTraceImpl.h
|
| @@ -21,6 +21,8 @@ class V8DebuggerImpl;
|
| class V8StackTraceImpl final : public V8StackTrace {
|
| PROTOCOL_DISALLOW_COPY(V8StackTraceImpl);
|
| public:
|
| + static const size_t maxCallStackSizeToCapture = 200;
|
| +
|
| class Frame {
|
| public:
|
| Frame();
|
| @@ -46,6 +48,7 @@ public:
|
| int m_columnNumber;
|
| };
|
|
|
| + static void setCaptureStackTraceForUncaughtExceptions(v8::Isolate*, bool capture);
|
| static std::unique_ptr<V8StackTraceImpl> create(V8DebuggerImpl*, int contextGroupId, v8::Local<v8::StackTrace>, size_t maxStackSize, const String16& description = String16());
|
| static std::unique_ptr<V8StackTraceImpl> capture(V8DebuggerImpl*, int contextGroupId, size_t maxStackSize, const String16& description = String16());
|
|
|
|
|