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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 #include "wtf/Forward.h" | 42 #include "wtf/Forward.h" |
43 #include "wtf/Noncopyable.h" | 43 #include "wtf/Noncopyable.h" |
44 #include "wtf/PassOwnPtr.h" | 44 #include "wtf/PassOwnPtr.h" |
45 | 45 |
46 class SkBitmap; | 46 class SkBitmap; |
47 class SkPaint; | 47 class SkPaint; |
48 class SkPath; | 48 class SkPath; |
49 class SkRRect; | 49 class SkRRect; |
50 struct SkRect; | 50 struct SkRect; |
51 | 51 |
52 namespace WebCore { | 52 namespace blink { |
53 | 53 |
54 class DisplayList; | 54 class DisplayList; |
55 class ImageBuffer; | 55 class ImageBuffer; |
56 class KURL; | 56 class KURL; |
57 | 57 |
58 typedef SkImageFilter ImageFilter; | 58 typedef SkImageFilter ImageFilter; |
59 | 59 |
60 class PLATFORM_EXPORT GraphicsContext { | 60 class PLATFORM_EXPORT GraphicsContext { |
61 WTF_MAKE_NONCOPYABLE(GraphicsContext); WTF_MAKE_FAST_ALLOCATED; | 61 WTF_MAKE_NONCOPYABLE(GraphicsContext); WTF_MAKE_FAST_ALLOCATED; |
62 public: | 62 public: |
(...skipping 457 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
520 // Are we on a high DPI display? If so, spelling and grammar markers are lar
ger. | 520 // Are we on a high DPI display? If so, spelling and grammar markers are lar
ger. |
521 bool m_useHighResMarker : 1; | 521 bool m_useHighResMarker : 1; |
522 // FIXME: Make this go away: crbug.com/236892 | 522 // FIXME: Make this go away: crbug.com/236892 |
523 bool m_updatingControlTints : 1; | 523 bool m_updatingControlTints : 1; |
524 bool m_accelerated : 1; | 524 bool m_accelerated : 1; |
525 bool m_isCertainlyOpaque : 1; | 525 bool m_isCertainlyOpaque : 1; |
526 bool m_printing : 1; | 526 bool m_printing : 1; |
527 bool m_antialiasHairlineImages : 1; | 527 bool m_antialiasHairlineImages : 1; |
528 }; | 528 }; |
529 | 529 |
530 } // namespace WebCore | 530 } // namespace blink |
531 | 531 |
532 #endif // GraphicsContext_h | 532 #endif // GraphicsContext_h |
OLD | NEW |