Index: third_party/WebKit/Source/platform/v8_inspector/V8RuntimeAgentImpl.cpp |
diff --git a/third_party/WebKit/Source/platform/v8_inspector/V8RuntimeAgentImpl.cpp b/third_party/WebKit/Source/platform/v8_inspector/V8RuntimeAgentImpl.cpp |
index 7c030806ee32509053e421a6effa09af4250e378..68c26c166e603e81b4417a5b0e49244baec81360 100644 |
--- a/third_party/WebKit/Source/platform/v8_inspector/V8RuntimeAgentImpl.cpp |
+++ b/third_party/WebKit/Source/platform/v8_inspector/V8RuntimeAgentImpl.cpp |
@@ -649,10 +649,10 @@ void V8RuntimeAgentImpl::reportExecutionContextCreated(InspectedContext* context |
context->setReported(true); |
std::unique_ptr<protocol::Runtime::ExecutionContextDescription> description = protocol::Runtime::ExecutionContextDescription::create() |
.setId(context->contextId()) |
- .setIsDefault(context->isDefault()) |
.setName(context->humanReadableName()) |
- .setOrigin(context->origin()) |
- .setFrameId(context->frameId()).build(); |
+ .setOrigin(context->origin()).build(); |
+ if (!context->auxData().isEmpty()) |
+ description->setAuxData(protocol::SerializedValue::create(context->auxData())); |
m_frontend.executionContextCreated(std::move(description)); |
} |