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 15 matching lines...) Expand all Loading... |
26 */ | 26 */ |
27 | 27 |
28 #ifndef GraphicsContext_h | 28 #ifndef GraphicsContext_h |
29 #define GraphicsContext_h | 29 #define GraphicsContext_h |
30 | 30 |
31 #include "platform/PlatformExport.h" | 31 #include "platform/PlatformExport.h" |
32 #include "platform/fonts/Font.h" | 32 #include "platform/fonts/Font.h" |
33 #include "platform/geometry/FloatRect.h" | 33 #include "platform/geometry/FloatRect.h" |
34 #include "platform/graphics/DashArray.h" | 34 #include "platform/graphics/DashArray.h" |
35 #include "platform/graphics/DrawLooperBuilder.h" | 35 #include "platform/graphics/DrawLooperBuilder.h" |
| 36 #include "platform/graphics/Image.h" |
36 #include "platform/graphics/ImageBufferSurface.h" | 37 #include "platform/graphics/ImageBufferSurface.h" |
37 #include "platform/graphics/ImageOrientation.h" | 38 #include "platform/graphics/ImageOrientation.h" |
38 #include "platform/graphics/GraphicsContextAnnotation.h" | 39 #include "platform/graphics/GraphicsContextAnnotation.h" |
39 #include "platform/graphics/GraphicsContextState.h" | 40 #include "platform/graphics/GraphicsContextState.h" |
40 #include "platform/graphics/RegionTracker.h" | 41 #include "platform/graphics/RegionTracker.h" |
41 #include "wtf/FastAllocBase.h" | 42 #include "wtf/FastAllocBase.h" |
42 #include "wtf/Forward.h" | 43 #include "wtf/Forward.h" |
43 #include "wtf/Noncopyable.h" | 44 #include "wtf/Noncopyable.h" |
44 #include "wtf/PassOwnPtr.h" | 45 #include "wtf/PassOwnPtr.h" |
45 | 46 |
(...skipping 497 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
543 bool m_updatingControlTints : 1; | 544 bool m_updatingControlTints : 1; |
544 bool m_accelerated : 1; | 545 bool m_accelerated : 1; |
545 bool m_isCertainlyOpaque : 1; | 546 bool m_isCertainlyOpaque : 1; |
546 bool m_printing : 1; | 547 bool m_printing : 1; |
547 bool m_antialiasHairlineImages : 1; | 548 bool m_antialiasHairlineImages : 1; |
548 }; | 549 }; |
549 | 550 |
550 } // namespace blink | 551 } // namespace blink |
551 | 552 |
552 #endif // GraphicsContext_h | 553 #endif // GraphicsContext_h |
OLD | NEW |