Index: content/common/gpu/client/gpu_memory_buffer_impl.cc |
diff --git a/content/common/gpu/client/gpu_memory_buffer_impl.cc b/content/common/gpu/client/gpu_memory_buffer_impl.cc |
index e900829fda34756318a7a21ab8f7d4d55b8ffb51..bfe4656a40650a83555a0dd022555398a1ad8e9c 100644 |
--- a/content/common/gpu/client/gpu_memory_buffer_impl.cc |
+++ b/content/common/gpu/client/gpu_memory_buffer_impl.cc |
@@ -29,11 +29,12 @@ |
size_(size), |
format_(format), |
callback_(callback), |
- mapped_(false) {} |
+ mapped_(false), |
+ destruction_sync_point_(0) {} |
GpuMemoryBufferImpl::~GpuMemoryBufferImpl() { |
DCHECK(!mapped_); |
- callback_.Run(destruction_sync_token_); |
+ callback_.Run(destruction_sync_point_); |
} |
// static |