| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2003, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. | 2 * Copyright (C) 2003, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2008-2009 Torch Mobile, Inc. | 3 * Copyright (C) 2008-2009 Torch Mobile, Inc. |
| 4 * Copyright (C) 2013 Google Inc. All rights reserved. | 4 * Copyright (C) 2013 Google Inc. All rights reserved. |
| 5 * | 5 * |
| 6 * Redistribution and use in source and binary forms, with or without | 6 * Redistribution and use in source and binary forms, with or without |
| 7 * modification, are permitted provided that the following conditions | 7 * modification, are permitted provided that the following conditions |
| 8 * are met: | 8 * are met: |
| 9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR | 21 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
| 22 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY | 22 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY |
| 23 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 23 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 25 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 25 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 26 */ | 26 */ |
| 27 | 27 |
| 28 #ifndef GraphicsContext_h | 28 #ifndef GraphicsContext_h |
| 29 #define GraphicsContext_h | 29 #define GraphicsContext_h |
| 30 | 30 |
| 31 #include "core/platform/graphics/DashArray.h" | |
| 32 #include "core/platform/graphics/DrawLooper.h" | |
| 33 #include "core/platform/graphics/Font.h" | 31 #include "core/platform/graphics/Font.h" |
| 34 #include "core/platform/graphics/GraphicsContextAnnotation.h" | 32 #include "core/platform/graphics/GraphicsContextAnnotation.h" |
| 35 #include "core/platform/graphics/GraphicsContextState.h" | 33 #include "core/platform/graphics/GraphicsContextState.h" |
| 36 #include "core/platform/graphics/ImageBuffer.h" | 34 #include "core/platform/graphics/ImageBuffer.h" |
| 37 #include "core/platform/graphics/skia/OpaqueRegionSkia.h" | 35 #include "core/platform/graphics/skia/OpaqueRegionSkia.h" |
| 38 #include "core/platform/graphics/skia/SkiaUtils.h" | 36 #include "core/platform/graphics/skia/SkiaUtils.h" |
| 39 #include "platform/TraceEvent.h" | 37 #include "platform/TraceEvent.h" |
| 40 #include "platform/geometry/FloatRect.h" | 38 #include "platform/geometry/FloatRect.h" |
| 39 #include "platform/graphics/DashArray.h" |
| 40 #include "platform/graphics/DrawLooper.h" |
| 41 #include "platform/graphics/ImageOrientation.h" | 41 #include "platform/graphics/ImageOrientation.h" |
| 42 // TODO(robertphillips): replace this include with "class SkBaseDevice;" | 42 // TODO(robertphillips): replace this include with "class SkBaseDevice;" |
| 43 #include "third_party/skia/include/core/SkDevice.h" | 43 #include "third_party/skia/include/core/SkDevice.h" |
| 44 #include "wtf/FastAllocBase.h" | 44 #include "wtf/FastAllocBase.h" |
| 45 #include "wtf/Forward.h" | 45 #include "wtf/Forward.h" |
| 46 #include "wtf/Noncopyable.h" | 46 #include "wtf/Noncopyable.h" |
| 47 #include "wtf/PassOwnPtr.h" | 47 #include "wtf/PassOwnPtr.h" |
| 48 | 48 |
| 49 class SkBitmap; | 49 class SkBitmap; |
| 50 class SkPaint; | 50 class SkPaint; |
| (...skipping 419 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 470 // FIXME: Make this go away: crbug.com/236892 | 470 // FIXME: Make this go away: crbug.com/236892 |
| 471 bool m_updatingControlTints : 1; | 471 bool m_updatingControlTints : 1; |
| 472 bool m_accelerated : 1; | 472 bool m_accelerated : 1; |
| 473 bool m_isCertainlyOpaque : 1; | 473 bool m_isCertainlyOpaque : 1; |
| 474 bool m_printing : 1; | 474 bool m_printing : 1; |
| 475 }; | 475 }; |
| 476 | 476 |
| 477 } // namespace WebCore | 477 } // namespace WebCore |
| 478 | 478 |
| 479 #endif // GraphicsContext_h | 479 #endif // GraphicsContext_h |
| OLD | NEW |