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

Side by Side Diff: cc/bitmap_skpicture_canvas_layer_texture_updater.h

Issue 11144023: cc: Store tiles, painters, tiling data in scoped_ptr (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased Created 8 years, 2 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 2011 The Chromium Authors. All rights reserved. 1 // Copyright 2011 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 5
6 #ifndef BitmapSkPictureCanvasLayerTextureUpdater_h 6 #ifndef BitmapSkPictureCanvasLayerTextureUpdater_h
7 #define BitmapSkPictureCanvasLayerTextureUpdater_h 7 #define BitmapSkPictureCanvasLayerTextureUpdater_h
8 8
9 #include "SkBitmap.h" 9 #include "SkBitmap.h"
10 #include "SkPictureCanvasLayerTextureUpdater.h" 10 #include "SkPictureCanvasLayerTextureUpdater.h"
(...skipping 10 matching lines...) Expand all
21 21
22 virtual void update(CCTextureUpdateQueue&, const IntRect& sourceRect, co nst IntSize& destOffset, bool partialUpdate, CCRenderingStats&) OVERRIDE; 22 virtual void update(CCTextureUpdateQueue&, const IntRect& sourceRect, co nst IntSize& destOffset, bool partialUpdate, CCRenderingStats&) OVERRIDE;
23 23
24 private: 24 private:
25 BitmapSkPictureCanvasLayerTextureUpdater* textureUpdater() { return m_te xtureUpdater; } 25 BitmapSkPictureCanvasLayerTextureUpdater* textureUpdater() { return m_te xtureUpdater; }
26 26
27 SkBitmap m_bitmap; 27 SkBitmap m_bitmap;
28 BitmapSkPictureCanvasLayerTextureUpdater* m_textureUpdater; 28 BitmapSkPictureCanvasLayerTextureUpdater* m_textureUpdater;
29 }; 29 };
30 30
31 static PassRefPtr<BitmapSkPictureCanvasLayerTextureUpdater> create(PassOwnPt r<LayerPainterChromium>); 31 static PassRefPtr<BitmapSkPictureCanvasLayerTextureUpdater> create(scoped_pt r<LayerPainterChromium>);
32 virtual ~BitmapSkPictureCanvasLayerTextureUpdater(); 32 virtual ~BitmapSkPictureCanvasLayerTextureUpdater();
33 33
34 virtual PassOwnPtr<LayerTextureUpdater::Texture> createTexture(CCPrioritized TextureManager*) OVERRIDE; 34 virtual PassOwnPtr<LayerTextureUpdater::Texture> createTexture(CCPrioritized TextureManager*) OVERRIDE;
35 virtual SampledTexelFormat sampledTexelFormat(GC3Denum textureFormat) OVERRI DE; 35 virtual SampledTexelFormat sampledTexelFormat(GC3Denum textureFormat) OVERRI DE;
36 void paintContentsRect(SkCanvas*, const IntRect& sourceRect, CCRenderingStat s&); 36 void paintContentsRect(SkCanvas*, const IntRect& sourceRect, CCRenderingStat s&);
37 37
38 private: 38 private:
39 explicit BitmapSkPictureCanvasLayerTextureUpdater(PassOwnPtr<LayerPainterChr omium>); 39 explicit BitmapSkPictureCanvasLayerTextureUpdater(scoped_ptr<LayerPainterChr omium>);
40 }; 40 };
41 } // namespace cc 41
42 #endif // BitmapSkPictureCanvasLayerTextureUpdater_h 42 } // namespace cc
43
44 #endif // BitmapSkPictureCanvasLayerTextureUpdater_h
OLDNEW
« no previous file with comments | « cc/bitmap_canvas_layer_texture_updater.cc ('k') | cc/bitmap_skpicture_canvas_layer_texture_updater.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698