| Index: third_party/WebKit/Source/platform/v8_inspector/V8ConsoleMessage.h
|
| diff --git a/third_party/WebKit/Source/platform/v8_inspector/V8ConsoleMessage.h b/third_party/WebKit/Source/platform/v8_inspector/V8ConsoleMessage.h
|
| index 9662ba9a7c4db6505b706e48a342a20b01f94a37..32ef9c77baaedbd9b49bee8c1348313cf5e580d8 100644
|
| --- a/third_party/WebKit/Source/platform/v8_inspector/V8ConsoleMessage.h
|
| +++ b/third_party/WebKit/Source/platform/v8_inspector/V8ConsoleMessage.h
|
| @@ -37,13 +37,14 @@ public:
|
|
|
| static std::unique_ptr<V8ConsoleMessage> createForException(
|
| double timestamp,
|
| - const String16& message,
|
| + const String16& detailedMessage,
|
| const String16& url,
|
| unsigned lineNumber,
|
| unsigned columnNumber,
|
| std::unique_ptr<V8StackTraceImpl>,
|
| int scriptId,
|
| v8::Isolate*,
|
| + const String16& message,
|
| int contextId,
|
| v8::Local<v8::Value> exception,
|
| unsigned exceptionId);
|
| @@ -80,6 +81,7 @@ private:
|
| unsigned m_exceptionId;
|
| unsigned m_revokedExceptionId;
|
| Arguments m_arguments;
|
| + String16 m_detailedMessage;
|
| };
|
|
|
| class V8ConsoleMessageStorage {
|
|
|