| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CanvasRenderingContext2DState_h | 5 #ifndef CanvasRenderingContext2DState_h |
| 6 #define CanvasRenderingContext2DState_h | 6 #define CanvasRenderingContext2DState_h |
| 7 | 7 |
| 8 #include "core/css/CSSFontSelectorClient.h" | 8 #include "core/css/CSSFontSelectorClient.h" |
| 9 #include "modules/canvas2d/ClipList.h" | 9 #include "modules/canvas2d/ClipList.h" |
| 10 #include "platform/fonts/Font.h" | 10 #include "platform/fonts/Font.h" |
| 11 #include "platform/graphics/paint/PaintFlags.h" | 11 #include "platform/graphics/paint/PaintFlags.h" |
| 12 #include "platform/transforms/AffineTransform.h" | 12 #include "platform/transforms/AffineTransform.h" |
| 13 #include "platform/wtf/Vector.h" |
| 13 #include "third_party/skia/include/core/SkRefCnt.h" | 14 #include "third_party/skia/include/core/SkRefCnt.h" |
| 14 #include "wtf/Vector.h" | |
| 15 | 15 |
| 16 namespace blink { | 16 namespace blink { |
| 17 | 17 |
| 18 class CanvasRenderingContext2D; | 18 class CanvasRenderingContext2D; |
| 19 class CanvasStyle; | 19 class CanvasStyle; |
| 20 class CSSValue; | 20 class CSSValue; |
| 21 class Element; | 21 class Element; |
| 22 | 22 |
| 23 class CanvasRenderingContext2DState final | 23 class CanvasRenderingContext2DState final |
| 24 : public GarbageCollectedFinalized<CanvasRenderingContext2DState>, | 24 : public GarbageCollectedFinalized<CanvasRenderingContext2DState>, |
| (...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 250 | 250 |
| 251 bool image_smoothing_enabled_; | 251 bool image_smoothing_enabled_; |
| 252 SkFilterQuality image_smoothing_quality_; | 252 SkFilterQuality image_smoothing_quality_; |
| 253 | 253 |
| 254 ClipList clip_list_; | 254 ClipList clip_list_; |
| 255 }; | 255 }; |
| 256 | 256 |
| 257 } // namespace blink | 257 } // namespace blink |
| 258 | 258 |
| 259 #endif | 259 #endif |
| OLD | NEW |