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

Side by Side Diff: third_party/WebKit/Source/platform/graphics/CrossfadeGeneratedImage.h

Issue 1497683002: Make platform/graphics to use USING_FAST_MALLOC. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2011 Apple Inc. All rights reserved. 2 * Copyright (C) 2011 Apple 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 16 matching lines...) Expand all
27 #define CrossfadeGeneratedImage_h 27 #define CrossfadeGeneratedImage_h
28 28
29 #include "platform/geometry/IntSize.h" 29 #include "platform/geometry/IntSize.h"
30 #include "platform/graphics/GeneratedImage.h" 30 #include "platform/graphics/GeneratedImage.h"
31 #include "platform/graphics/Image.h" 31 #include "platform/graphics/Image.h"
32 #include "platform/graphics/ImageObserver.h" 32 #include "platform/graphics/ImageObserver.h"
33 #include "wtf/RefPtr.h" 33 #include "wtf/RefPtr.h"
34 34
35 namespace blink { 35 namespace blink {
36 36
37 class PLATFORM_EXPORT CrossfadeGeneratedImage : public GeneratedImage { 37 class PLATFORM_EXPORT CrossfadeGeneratedImage final : public GeneratedImage {
38 public: 38 public:
39 static PassRefPtr<CrossfadeGeneratedImage> create(Image* fromImage, Image* t oImage, float percentage, IntSize crossfadeSize, const IntSize& size) 39 static PassRefPtr<CrossfadeGeneratedImage> create(Image* fromImage, Image* t oImage, float percentage, IntSize crossfadeSize, const IntSize& size)
40 { 40 {
41 return adoptRef(new CrossfadeGeneratedImage(fromImage, toImage, percenta ge, crossfadeSize, size)); 41 return adoptRef(new CrossfadeGeneratedImage(fromImage, toImage, percenta ge, crossfadeSize, size));
42 } 42 }
43 43
44 void setContainerSize(const IntSize&) override { } 44 void setContainerSize(const IntSize&) override { }
45 bool usesContainerSize() const override { return false; } 45 bool usesContainerSize() const override { return false; }
46 bool hasRelativeWidth() const override { return false; } 46 bool hasRelativeWidth() const override { return false; }
47 bool hasRelativeHeight() const override { return false; } 47 bool hasRelativeHeight() const override { return false; }
(...skipping 12 matching lines...) Expand all
60 Image* m_fromImage; 60 Image* m_fromImage;
61 Image* m_toImage; 61 Image* m_toImage;
62 62
63 float m_percentage; 63 float m_percentage;
64 IntSize m_crossfadeSize; 64 IntSize m_crossfadeSize;
65 }; 65 };
66 66
67 } // namespace blink 67 } // namespace blink
68 68
69 #endif 69 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698