Index: src/inspector/v8-heap-profiler-agent-impl.cc |
diff --git a/src/inspector/v8-heap-profiler-agent-impl.cc b/src/inspector/v8-heap-profiler-agent-impl.cc |
index a0f1004459d4603666635be288cf29cdb529fc0c..4ccef1c01532353eaed29c3ea25189cef2d97a12 100644 |
--- a/src/inspector/v8-heap-profiler-agent-impl.cc |
+++ b/src/inspector/v8-heap-profiler-agent-impl.cc |
@@ -294,7 +294,7 @@ void V8HeapProfilerAgentImpl::getHeapObjectId(ErrorString* errorString, |
return; |
v8::SnapshotObjectId id = m_isolate->GetHeapProfiler()->GetObjectId(value); |
- *heapSnapshotObjectId = String16::fromInteger(id); |
+ *heapSnapshotObjectId = String16::fromInteger(static_cast<size_t>(id)); |
} |
void V8HeapProfilerAgentImpl::requestHeapStatsUpdate() { |