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

Side by Side Diff: Source/platform/graphics/filters/ReferenceFilter.h

Issue 630853002: Replacing the OVERRIDE with override in third_party/WebKit/Source/platform (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase build fix Created 6 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2013 Adobe Systems Incorporated. All rights reserved. 2 * Copyright (C) 2013 Adobe Systems Incorporated. All rights reserved.
3 * Copyright (C) 2013 Google Inc. All rights reserved. 3 * Copyright (C) 2013 Google Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 8 *
9 * 1. Redistributions of source code must retain the above 9 * 1. Redistributions of source code must retain the above
10 * copyright notice, this list of conditions and the following 10 * copyright notice, this list of conditions and the following
(...skipping 30 matching lines...) Expand all
41 class SourceGraphic; 41 class SourceGraphic;
42 class FilterEffect; 42 class FilterEffect;
43 43
44 class PLATFORM_EXPORT ReferenceFilter: public Filter { 44 class PLATFORM_EXPORT ReferenceFilter: public Filter {
45 public: 45 public:
46 static PassRefPtr<ReferenceFilter> create() 46 static PassRefPtr<ReferenceFilter> create()
47 { 47 {
48 return adoptRef(new ReferenceFilter()); 48 return adoptRef(new ReferenceFilter());
49 } 49 }
50 50
51 virtual IntRect sourceImageRect() const OVERRIDE { return IntRect(); }; 51 virtual IntRect sourceImageRect() const override { return IntRect(); };
52 52
53 void setLastEffect(PassRefPtr<FilterEffect>); 53 void setLastEffect(PassRefPtr<FilterEffect>);
54 FilterEffect* lastEffect() const { return m_lastEffect.get(); } 54 FilterEffect* lastEffect() const { return m_lastEffect.get(); }
55 55
56 SourceGraphic* sourceGraphic() const { return m_sourceGraphic.get(); } 56 SourceGraphic* sourceGraphic() const { return m_sourceGraphic.get(); }
57 57
58 private: 58 private:
59 ReferenceFilter(); 59 ReferenceFilter();
60 virtual ~ReferenceFilter(); 60 virtual ~ReferenceFilter();
61 61
62 RefPtr<SourceGraphic> m_sourceGraphic; 62 RefPtr<SourceGraphic> m_sourceGraphic;
63 RefPtr<FilterEffect> m_lastEffect; 63 RefPtr<FilterEffect> m_lastEffect;
64 }; 64 };
65 65
66 } // namespace blink 66 } // namespace blink
67 67
68 #endif // ReferenceFilter_h 68 #endif // ReferenceFilter_h
OLDNEW
« no previous file with comments | « Source/platform/graphics/filters/PointLightSource.h ('k') | Source/platform/graphics/filters/SourceAlpha.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698