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

Side by Side Diff: cc/resources/caching_bitmap_content_layer_updater.h

Issue 13245007: cc: Remove RenderingStats passed to ContentLayerUpdater during Layer::Update() (Closed) Base URL: http://git.chromium.org/chromium/src.git@three
Patch Set: Rebase to 208926 Created 7 years, 5 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
OLDNEW
1 // Copyright 2012 The Chromium Authors. All rights reserved. 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 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 #ifndef CC_RESOURCES_CACHING_BITMAP_CONTENT_LAYER_UPDATER_H_ 5 #ifndef CC_RESOURCES_CACHING_BITMAP_CONTENT_LAYER_UPDATER_H_
6 #define CC_RESOURCES_CACHING_BITMAP_CONTENT_LAYER_UPDATER_H_ 6 #define CC_RESOURCES_CACHING_BITMAP_CONTENT_LAYER_UPDATER_H_
7 7
8 #include "base/compiler_specific.h" 8 #include "base/compiler_specific.h"
9 #include "cc/resources/bitmap_content_layer_updater.h" 9 #include "cc/resources/bitmap_content_layer_updater.h"
10 #include "third_party/skia/include/core/SkBitmap.h" 10 #include "third_party/skia/include/core/SkBitmap.h"
11 11
12 namespace cc { 12 namespace cc {
13 13
14 class CachingBitmapContentLayerUpdater : public BitmapContentLayerUpdater { 14 class CachingBitmapContentLayerUpdater : public BitmapContentLayerUpdater {
15 public: 15 public:
16 static scoped_refptr<CachingBitmapContentLayerUpdater> Create( 16 static scoped_refptr<CachingBitmapContentLayerUpdater> Create(
17 scoped_ptr<LayerPainter>, 17 scoped_ptr<LayerPainter>,
18 RenderingStatsInstrumentation* stats_instrumentation, 18 RenderingStatsInstrumentation* stats_instrumentation,
19 int layer_id); 19 int layer_id);
20 20
21 virtual void PrepareToUpdate(gfx::Rect content_rect, 21 virtual void PrepareToUpdate(gfx::Rect content_rect,
22 gfx::Size tile_size, 22 gfx::Size tile_size,
23 float contents_width_scale, 23 float contents_width_scale,
24 float contents_height_scale, 24 float contents_height_scale,
25 gfx::Rect* resulting_opaque_rect, 25 gfx::Rect* resulting_opaque_rect) OVERRIDE;
26 RenderingStats* stats) OVERRIDE;
27 26
28 bool pixels_did_change() const { 27 bool pixels_did_change() const {
29 return pixels_did_change_; 28 return pixels_did_change_;
30 } 29 }
31 30
32 private: 31 private:
33 CachingBitmapContentLayerUpdater( 32 CachingBitmapContentLayerUpdater(
34 scoped_ptr<LayerPainter> painter, 33 scoped_ptr<LayerPainter> painter,
35 RenderingStatsInstrumentation* stats_instrumentation, 34 RenderingStatsInstrumentation* stats_instrumentation,
36 int layer_id); 35 int layer_id);
37 virtual ~CachingBitmapContentLayerUpdater(); 36 virtual ~CachingBitmapContentLayerUpdater();
38 37
39 bool pixels_did_change_; 38 bool pixels_did_change_;
40 SkBitmap cached_bitmap_; 39 SkBitmap cached_bitmap_;
41 40
42 DISALLOW_COPY_AND_ASSIGN(CachingBitmapContentLayerUpdater); 41 DISALLOW_COPY_AND_ASSIGN(CachingBitmapContentLayerUpdater);
43 }; 42 };
44 43
45 } // namespace cc 44 } // namespace cc
46 45
47 #endif // CC_RESOURCES_CACHING_BITMAP_CONTENT_LAYER_UPDATER_H_ 46 #endif // CC_RESOURCES_CACHING_BITMAP_CONTENT_LAYER_UPDATER_H_
OLDNEW
« no previous file with comments | « cc/resources/bitmap_skpicture_content_layer_updater.cc ('k') | cc/resources/caching_bitmap_content_layer_updater.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698