Index: cc/resources/texture_mailbox.cc |
diff --git a/cc/resources/texture_mailbox.cc b/cc/resources/texture_mailbox.cc |
index a6c2fde43bfc95cf2facb351bab9b8a4c770b97c..a08930d07699a7d3259dec2d240001295a754efc 100644 |
--- a/cc/resources/texture_mailbox.cc |
+++ b/cc/resources/texture_mailbox.cc |
@@ -12,16 +12,22 @@ namespace cc { |
TextureMailbox::TextureMailbox() : shared_memory_(NULL) {} |
TextureMailbox::TextureMailbox(const gpu::MailboxHolder& mailbox_holder) |
- : mailbox_holder_(mailbox_holder), shared_memory_(NULL) {} |
+ : mailbox_holder_(mailbox_holder), |
+ shared_memory_(NULL), |
+ allow_overlay_(false) {} |
TextureMailbox::TextureMailbox(const gpu::Mailbox& mailbox, |
uint32 target, |
uint32 sync_point) |
- : mailbox_holder_(mailbox, target, sync_point), shared_memory_(NULL) {} |
+ : mailbox_holder_(mailbox, target, sync_point), |
+ shared_memory_(NULL), |
+ allow_overlay_(false) {} |
TextureMailbox::TextureMailbox(base::SharedMemory* shared_memory, |
const gfx::Size& size) |
- : shared_memory_(shared_memory), shared_memory_size_(size) {} |
+ : shared_memory_(shared_memory), |
+ shared_memory_size_(size), |
+ allow_overlay_(false) {} |
TextureMailbox::~TextureMailbox() {} |