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

Side by Side Diff: cc/playback/image_hijack_canvas.h

Issue 2541183002: cc: Rename ImageDecodeController to ImageDecodeCache. (Closed)
Patch Set: rename: update Created 4 years 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
« no previous file with comments | « cc/output/software_renderer.cc ('k') | cc/playback/image_hijack_canvas.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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_PLAYBACK_IMAGE_HIJACK_CANVAS_H_ 5 #ifndef CC_PLAYBACK_IMAGE_HIJACK_CANVAS_H_
6 #define CC_PLAYBACK_IMAGE_HIJACK_CANVAS_H_ 6 #define CC_PLAYBACK_IMAGE_HIJACK_CANVAS_H_
7 7
8 #include "base/macros.h" 8 #include "base/macros.h"
9 #include "third_party/skia/include/utils/SkNWayCanvas.h" 9 #include "third_party/skia/include/utils/SkNWayCanvas.h"
10 10
11 namespace cc { 11 namespace cc {
12 12
13 class ImageDecodeController; 13 class ImageDecodeCache;
14 14
15 class ImageHijackCanvas : public SkNWayCanvas { 15 class ImageHijackCanvas : public SkNWayCanvas {
16 public: 16 public:
17 ImageHijackCanvas(int width, 17 ImageHijackCanvas(int width,
18 int height, 18 int height,
19 ImageDecodeController* image_decode_controller); 19 ImageDecodeCache* image_decode_cache);
20 20
21 private: 21 private:
22 // Ensure that pictures are unpacked by this canvas, instead of being 22 // Ensure that pictures are unpacked by this canvas, instead of being
23 // forwarded to the raster canvas. 23 // forwarded to the raster canvas.
24 void onDrawPicture(const SkPicture* picture, 24 void onDrawPicture(const SkPicture* picture,
25 const SkMatrix* matrix, 25 const SkMatrix* matrix,
26 const SkPaint* paint) override; 26 const SkPaint* paint) override;
27 27
28 void onDrawImage(const SkImage* image, 28 void onDrawImage(const SkImage* image,
29 SkScalar x, 29 SkScalar x,
30 SkScalar y, 30 SkScalar y,
31 const SkPaint* paint) override; 31 const SkPaint* paint) override;
32 void onDrawImageRect(const SkImage* image, 32 void onDrawImageRect(const SkImage* image,
33 const SkRect* src, 33 const SkRect* src,
34 const SkRect& dst, 34 const SkRect& dst,
35 const SkPaint* paint, 35 const SkPaint* paint,
36 SrcRectConstraint constraint) override; 36 SrcRectConstraint constraint) override;
37 void onDrawImageNine(const SkImage* image, 37 void onDrawImageNine(const SkImage* image,
38 const SkIRect& center, 38 const SkIRect& center,
39 const SkRect& dst, 39 const SkRect& dst,
40 const SkPaint* paint) override; 40 const SkPaint* paint) override;
41 41
42 ImageDecodeController* image_decode_controller_; 42 ImageDecodeCache* image_decode_cache_;
43 43
44 DISALLOW_COPY_AND_ASSIGN(ImageHijackCanvas); 44 DISALLOW_COPY_AND_ASSIGN(ImageHijackCanvas);
45 }; 45 };
46 46
47 } // namespace cc 47 } // namespace cc
48 48
49 #endif // CC_PLAYBACK_IMAGE_HIJACK_CANVAS_H_ 49 #endif // CC_PLAYBACK_IMAGE_HIJACK_CANVAS_H_
OLDNEW
« no previous file with comments | « cc/output/software_renderer.cc ('k') | cc/playback/image_hijack_canvas.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698