Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(241)

Side by Side Diff: cc/output/copy_output_result.cc

Issue 23648014: cc: Move TextureMailbox::ReleaseCallback to SingleReleaseCallback. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: releasecallback: missingfiles Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "cc/output/copy_output_result.h" 5 #include "cc/output/copy_output_result.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "cc/resources/texture_mailbox.h" 8 #include "cc/resources/texture_mailbox.h"
9 #include "third_party/skia/include/core/SkBitmap.h" 9 #include "third_party/skia/include/core/SkBitmap.h"
10 10
11 namespace cc { 11 namespace cc {
12 12
13 CopyOutputResult::CopyOutputResult() {} 13 CopyOutputResult::CopyOutputResult() {}
14 14
15 CopyOutputResult::CopyOutputResult(scoped_ptr<SkBitmap> bitmap) 15 CopyOutputResult::CopyOutputResult(scoped_ptr<SkBitmap> bitmap)
16 : size_(bitmap->width(), bitmap->height()), 16 : size_(bitmap->width(), bitmap->height()),
17 bitmap_(bitmap.Pass()) { 17 bitmap_(bitmap.Pass()) {
18 DCHECK(bitmap_); 18 DCHECK(bitmap_);
19 } 19 }
20 20
21 CopyOutputResult::CopyOutputResult(gfx::Size size, 21 CopyOutputResult::CopyOutputResult(gfx::Size size,
22 scoped_ptr<TextureMailbox> texture_mailbox) 22 const TextureMailbox& texture_mailbox,
23 ScopedReleaseCallback release_callback)
23 : size_(size), 24 : size_(size),
24 texture_mailbox_(texture_mailbox.Pass()) { 25 texture_mailbox_(texture_mailbox),
25 DCHECK(texture_mailbox_); 26 release_callback_(release_callback.Pass()) {
26 DCHECK(texture_mailbox_->IsTexture()); 27 DCHECK(texture_mailbox_.IsTexture());
27 } 28 }
28 29
29 CopyOutputResult::~CopyOutputResult() { 30 CopyOutputResult::~CopyOutputResult() {
30 if (texture_mailbox_) 31 if (!release_callback_.IsEmpty())
31 texture_mailbox_->RunReleaseCallback(0, false); 32 release_callback_.RunAndReset(0, false);
32 } 33 }
33 34
34 scoped_ptr<SkBitmap> CopyOutputResult::TakeBitmap() { 35 scoped_ptr<SkBitmap> CopyOutputResult::TakeBitmap() {
35 return bitmap_.Pass(); 36 return bitmap_.Pass();
36 } 37 }
37 38
38 scoped_ptr<TextureMailbox> CopyOutputResult::TakeTexture() { 39 void CopyOutputResult::TakeTexture(TextureMailbox* texture_mailbox,
39 return texture_mailbox_.Pass(); 40 ScopedReleaseCallback* release_callback) {
41 *texture_mailbox = texture_mailbox_;
42 *release_callback = release_callback_.Pass();
43
44 texture_mailbox_ = TextureMailbox();
40 } 45 }
41 46
42 } // namespace cc 47 } // namespace cc
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698