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

Side by Side Diff: cc/caching_bitmap_content_layer_updater.h

Issue 12471007: Part 8 of cc/ directory shuffles: resources (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 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
(Empty)
1 // Copyright 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CC_CACHING_BITMAP_CONTENT_LAYER_UPDATER_H_
6 #define CC_CACHING_BITMAP_CONTENT_LAYER_UPDATER_H_
7
8 #include "base/compiler_specific.h"
9 #include "cc/bitmap_content_layer_updater.h"
10 #include "third_party/skia/include/core/SkBitmap.h"
11
12 namespace cc {
13
14 class CachingBitmapContentLayerUpdater : public BitmapContentLayerUpdater {
15 public:
16 static scoped_refptr<CachingBitmapContentLayerUpdater> Create(
17 scoped_ptr<LayerPainter>);
18
19 virtual void PrepareToUpdate(gfx::Rect content_rect,
20 gfx::Size tile_size,
21 float contents_width_scale,
22 float contents_height_scale,
23 gfx::Rect* resulting_opaque_rect,
24 RenderingStats* stats) OVERRIDE;
25
26 bool pixels_did_change() const {
27 return pixels_did_change_;
28 }
29
30 private:
31 explicit CachingBitmapContentLayerUpdater(scoped_ptr<LayerPainter> painter);
32 virtual ~CachingBitmapContentLayerUpdater();
33
34 bool pixels_did_change_;
35 SkBitmap cached_bitmap_;
36
37 DISALLOW_COPY_AND_ASSIGN(CachingBitmapContentLayerUpdater);
38 };
39
40 } // namespace cc
41
42 #endif // CC_CACHING_BITMAP_CONTENT_LAYER_UPDATER_H_
OLDNEW
« no previous file with comments | « cc/bitmap_skpicture_content_layer_updater.cc ('k') | cc/caching_bitmap_content_layer_updater.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698