diff options
Diffstat (limited to 'gpu/command_buffer/service/async_pixel_transfer_delegate_idle.cc')
-rw-r--r-- | gpu/command_buffer/service/async_pixel_transfer_delegate_idle.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gpu/command_buffer/service/async_pixel_transfer_delegate_idle.cc b/gpu/command_buffer/service/async_pixel_transfer_delegate_idle.cc index f4a3e48..d8bf916 100644 --- a/gpu/command_buffer/service/async_pixel_transfer_delegate_idle.cc +++ b/gpu/command_buffer/service/async_pixel_transfer_delegate_idle.cc @@ -32,7 +32,6 @@ class AsyncPixelTransferStateImpl : public AsyncPixelTransferState { texture_id_(texture_id), transfer_in_progress_(false) { } - virtual ~AsyncPixelTransferStateImpl() {} // Implement AsyncPixelTransferState: virtual bool TransferIsInProgress() OVERRIDE { @@ -53,6 +52,8 @@ class AsyncPixelTransferStateImpl : public AsyncPixelTransferState { } private: + virtual ~AsyncPixelTransferStateImpl() {} + uint64 id_; GLuint texture_id_; bool transfer_in_progress_; |