Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef SKIA_EXT_PAINT_SIMPLIFIER_H | |
| 6 #define SKIA_EXT_PAINT_SIMPLIFIER_H | |
| 7 | |
| 8 #include "base/values.h" | |
| 9 #include "third_party/skia/include/core/SkDrawFilter.h" | |
| 10 | |
| 11 class SkPaint; | |
| 12 | |
| 13 namespace skia { | |
| 14 | |
|
reed1
2013/02/08 14:15:26
No comment on what it does, or what it suppresses?
Tom Hudson
2013/02/08 14:47:39
Done.
| |
| 15 class SK_API PaintSimplifier : public SkDrawFilter { | |
| 16 public: | |
| 17 PaintSimplifier(); | |
| 18 virtual ~PaintSimplifier(); | |
| 19 virtual bool filter(SkPaint*, Type) OVERRIDE; | |
| 20 | |
| 21 private: | |
| 22 typedef SkDrawFilter INHERITED; | |
| 23 }; | |
| 24 | |
| 25 } // namespace skia | |
| 26 | |
| 27 #endif // SKIA_EXT_PAINT_SIMPLIFIER_H | |
| 28 | |
| OLD | NEW |