Home | History | Annotate | Download | only in output

Lines Matching refs:scoped_ptr

8 #include "base/memory/scoped_ptr.h"
19 static scoped_ptr<CopyOutputResult> CreateEmptyResult() {
22 static scoped_ptr<CopyOutputResult> CreateBitmapResult(
23 scoped_ptr<SkBitmap> bitmap) {
26 static scoped_ptr<CopyOutputResult> CreateTextureResult(
28 scoped_ptr<TextureMailbox> texture_mailbox) {
39 scoped_ptr<SkBitmap> TakeBitmap();
40 scoped_ptr<TextureMailbox> TakeTexture();
44 explicit CopyOutputResult(scoped_ptr<SkBitmap> bitmap);
46 scoped_ptr<TextureMailbox> texture_mailbox);
49 scoped_ptr<SkBitmap> bitmap_;
50 scoped_ptr<TextureMailbox> texture_mailbox_;