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

Unified Diff: cc/test/skia_common.h

Issue 31613002: Update unit tests after SkFlattenable::getFactory const-ification. Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | cc/test/skia_common.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/test/skia_common.h
diff --git a/cc/test/skia_common.h b/cc/test/skia_common.h
index 0b2f84e28891f58e9440c46fb9deb9ef905c3c96..b8a9390733c191fb9de1e4976f96897bcbf1d6b7 100644
--- a/cc/test/skia_common.h
+++ b/cc/test/skia_common.h
@@ -24,7 +24,7 @@ class TestPixelRef : public SkPixelRef {
TestPixelRef(int width, int height);
virtual ~TestPixelRef();
- virtual SkFlattenable::Factory getFactory() OVERRIDE;
+ virtual SkFlattenable::Factory getFactory() const OVERRIDE;
virtual void* onLockPixels(SkColorTable** color_table) OVERRIDE;
virtual void onUnlockPixels() OVERRIDE {}
virtual SkPixelRef* deepCopy(
@@ -39,7 +39,7 @@ class TestLazyPixelRef : public skia::LazyPixelRef {
TestLazyPixelRef(int width, int height);
virtual ~TestLazyPixelRef();
- virtual SkFlattenable::Factory getFactory() OVERRIDE;
+ virtual SkFlattenable::Factory getFactory() const OVERRIDE;
virtual void* onLockPixels(SkColorTable** color_table) OVERRIDE;
virtual void onUnlockPixels() OVERRIDE {}
virtual bool PrepareToDecode(const PrepareParams& params) OVERRIDE;
« no previous file with comments | « no previous file | cc/test/skia_common.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698