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

Side by Side Diff: Source/platform/graphics/GradientGeneratedImage.h

Issue 868743002: Use SkXfermode::Mode in code related to Image. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebase to ToT Created 5 years, 11 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 /* 1 /*
2 * Copyright (C) 2008, 2012 Apple Computer, Inc. All rights reserved. 2 * Copyright (C) 2008, 2012 Apple Computer, Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 30 matching lines...) Expand all
41 { 41 {
42 return adoptRef(new GradientGeneratedImage(generator, size)); 42 return adoptRef(new GradientGeneratedImage(generator, size));
43 } 43 }
44 44
45 virtual ~GradientGeneratedImage() 45 virtual ~GradientGeneratedImage()
46 { 46 {
47 } 47 }
48 48
49 protected: 49 protected:
50 void draw(GraphicsContext*, const FloatRect&, const FloatRect&, 50 void draw(GraphicsContext*, const FloatRect&, const FloatRect&,
51 CompositeOperator, WebBlendMode, RespectImageOrientationEnum) override; 51 SkXfermode::Mode, RespectImageOrientationEnum) override;
52 virtual void drawTile(GraphicsContext*, const FloatRect&) final; 52 virtual void drawTile(GraphicsContext*, const FloatRect&) final;
53 53
54 GradientGeneratedImage(PassRefPtr<Gradient> generator, const IntSize& size) 54 GradientGeneratedImage(PassRefPtr<Gradient> generator, const IntSize& size)
55 : GeneratedImage(size) 55 : GeneratedImage(size)
56 , m_gradient(generator) 56 , m_gradient(generator)
57 { 57 {
58 } 58 }
59 59
60 RefPtr<Gradient> m_gradient; 60 RefPtr<Gradient> m_gradient;
61 }; 61 };
62 62
63 } // namespace blink 63 } // namespace blink
64 64
65 #endif 65 #endif
OLDNEW
« no previous file with comments | « Source/platform/graphics/GeneratedImage.cpp ('k') | Source/platform/graphics/GradientGeneratedImage.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698