| Index: third_party/WebKit/Source/platform/v8_inspector/V8Debugger.cpp
|
| diff --git a/third_party/WebKit/Source/platform/v8_inspector/V8Debugger.cpp b/third_party/WebKit/Source/platform/v8_inspector/V8Debugger.cpp
|
| index ff93531a63843220b435ad98411894b3067d9e73..f580af4f068ea0904f92ac69df16ff6ceddf25e0 100644
|
| --- a/third_party/WebKit/Source/platform/v8_inspector/V8Debugger.cpp
|
| +++ b/third_party/WebKit/Source/platform/v8_inspector/V8Debugger.cpp
|
| @@ -715,7 +715,7 @@ int V8Debugger::markContext(const V8ContextInfo& info)
|
| {
|
| DCHECK(info.context->GetIsolate() == m_isolate);
|
| int contextId = ++m_lastContextId;
|
| - String16 debugData = String16::fromInteger(info.contextGroupId) + "," + String16::fromInteger(contextId) + "," + (info.isDefault ? "default" : "nondefault");
|
| + String16 debugData = String16::fromInteger(info.contextGroupId) + "," + String16::fromInteger(contextId) + "," + info.auxData;
|
| v8::Context::Scope contextScope(info.context);
|
| info.context->SetEmbedderData(static_cast<int>(v8::Context::kDebugIdIndex), toV8String(m_isolate, debugData));
|
| return contextId;
|
|
|