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

Side by Side Diff: cc/raster/image_hijack_canvas_unittest.cc

Issue 2795803002: Clear Image Decode Cache on Navigation (Closed)
Patch Set: fix conversion Created 3 years, 8 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
« no previous file with comments | « no previous file | cc/tiles/gpu_image_decode_cache.h » ('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 #include "cc/raster/image_hijack_canvas.h" 4 #include "cc/raster/image_hijack_canvas.h"
5 5
6 #include "cc/test/skia_common.h" 6 #include "cc/test/skia_common.h"
7 #include "cc/tiles/image_decode_cache.h" 7 #include "cc/tiles/image_decode_cache.h"
8 #include "testing/gmock/include/gmock/gmock.h" 8 #include "testing/gmock/include/gmock/gmock.h"
9 #include "testing/gtest/include/gtest/gtest.h" 9 #include "testing/gtest/include/gtest/gtest.h"
10 #include "third_party/skia/include/core/SkBitmap.h" 10 #include "third_party/skia/include/core/SkBitmap.h"
(...skipping 11 matching lines...) Expand all
22 scoped_refptr<TileTask>* task)); 22 scoped_refptr<TileTask>* task));
23 MOCK_METHOD1(UnrefImage, void(const DrawImage& image)); 23 MOCK_METHOD1(UnrefImage, void(const DrawImage& image));
24 MOCK_METHOD1(GetDecodedImageForDraw, 24 MOCK_METHOD1(GetDecodedImageForDraw,
25 DecodedDrawImage(const DrawImage& image)); 25 DecodedDrawImage(const DrawImage& image));
26 MOCK_METHOD2(DrawWithImageFinished, 26 MOCK_METHOD2(DrawWithImageFinished,
27 void(const DrawImage& image, 27 void(const DrawImage& image,
28 const DecodedDrawImage& decoded_image)); 28 const DecodedDrawImage& decoded_image));
29 MOCK_METHOD0(ReduceCacheUsage, void()); 29 MOCK_METHOD0(ReduceCacheUsage, void());
30 MOCK_METHOD1(SetShouldAggressivelyFreeResources, 30 MOCK_METHOD1(SetShouldAggressivelyFreeResources,
31 void(bool aggressively_free_resources)); 31 void(bool aggressively_free_resources));
32 MOCK_METHOD0(ClearCache, void());
32 MOCK_METHOD2(GetOutOfRasterDecodeTaskForImageAndRef, 33 MOCK_METHOD2(GetOutOfRasterDecodeTaskForImageAndRef,
33 bool(const DrawImage& image, scoped_refptr<TileTask>* task)); 34 bool(const DrawImage& image, scoped_refptr<TileTask>* task));
34 }; 35 };
35 36
36 TEST(ImageHijackCanvasTest, NonLazyImagesSkipped) { 37 TEST(ImageHijackCanvasTest, NonLazyImagesSkipped) {
37 // Use a strict mock so that if *any* ImageDecodeCache methods are called, we 38 // Use a strict mock so that if *any* ImageDecodeCache methods are called, we
38 // will hit an error. 39 // will hit an error.
39 testing::StrictMock<MockImageDecodeCache> image_decode_cache; 40 testing::StrictMock<MockImageDecodeCache> image_decode_cache;
40 ImageIdFlatSet images_to_skip; 41 ImageIdFlatSet images_to_skip;
41 ImageHijackCanvas canvas(100, 100, &image_decode_cache, &images_to_skip); 42 ImageHijackCanvas canvas(100, 100, &image_decode_cache, &images_to_skip);
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 canvas.drawImageRect(image, SkRect::MakeXYWH(0, 0, 10, 10), 79 canvas.drawImageRect(image, SkRect::MakeXYWH(0, 0, 10, 10),
79 SkRect::MakeXYWH(10, 10, 10, 10), &paint); 80 SkRect::MakeXYWH(10, 10, 10, 10), &paint);
80 paint.setShader(image->makeShader(SkShader::kClamp_TileMode, 81 paint.setShader(image->makeShader(SkShader::kClamp_TileMode,
81 SkShader::kClamp_TileMode, nullptr)); 82 SkShader::kClamp_TileMode, nullptr));
82 canvas.drawRect(SkRect::MakeXYWH(10, 10, 10, 10), paint); 83 canvas.drawRect(SkRect::MakeXYWH(10, 10, 10, 10), paint);
83 } 84 }
84 85
85 } // namespace 86 } // namespace
86 87
87 } // namespace cc 88 } // namespace cc
OLDNEW
« no previous file with comments | « no previous file | cc/tiles/gpu_image_decode_cache.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698