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 22 matching lines...) Expand all Loading... |
33 #include "platform/geometry/FloatRect.h" | 33 #include "platform/geometry/FloatRect.h" |
34 #include "platform/geometry/FloatRoundedRect.h" | 34 #include "platform/geometry/FloatRoundedRect.h" |
35 #include "platform/graphics/DashArray.h" | 35 #include "platform/graphics/DashArray.h" |
36 #include "platform/graphics/DrawLooperBuilder.h" | 36 #include "platform/graphics/DrawLooperBuilder.h" |
37 #include "platform/graphics/ImageOrientation.h" | 37 #include "platform/graphics/ImageOrientation.h" |
38 #include "platform/graphics/GraphicsContextState.h" | 38 #include "platform/graphics/GraphicsContextState.h" |
39 #include "platform/graphics/skia/SkiaUtils.h" | 39 #include "platform/graphics/skia/SkiaUtils.h" |
40 #include "third_party/skia/include/core/SkMetaData.h" | 40 #include "third_party/skia/include/core/SkMetaData.h" |
41 #include "third_party/skia/include/core/SkPictureRecorder.h" | 41 #include "third_party/skia/include/core/SkPictureRecorder.h" |
42 #include "third_party/skia/include/core/SkRegion.h" | 42 #include "third_party/skia/include/core/SkRegion.h" |
43 #include "wtf/FastAllocBase.h" | 43 #include "wtf/Allocator.h" |
44 #include "wtf/Forward.h" | 44 #include "wtf/Forward.h" |
45 #include "wtf/Noncopyable.h" | 45 #include "wtf/Noncopyable.h" |
46 #include "wtf/PassOwnPtr.h" | 46 #include "wtf/PassOwnPtr.h" |
47 | 47 |
48 class SkBitmap; | 48 class SkBitmap; |
49 class SkImage; | 49 class SkImage; |
50 class SkPaint; | 50 class SkPaint; |
51 class SkPath; | 51 class SkPath; |
52 class SkPicture; | 52 class SkPicture; |
53 class SkRRect; | 53 class SkRRect; |
(...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
368 | 368 |
369 float m_deviceScaleFactor; | 369 float m_deviceScaleFactor; |
370 | 370 |
371 unsigned m_printing : 1; | 371 unsigned m_printing : 1; |
372 unsigned m_hasMetaData : 1; | 372 unsigned m_hasMetaData : 1; |
373 }; | 373 }; |
374 | 374 |
375 } // namespace blink | 375 } // namespace blink |
376 | 376 |
377 #endif // GraphicsContext_h | 377 #endif // GraphicsContext_h |
OLD | NEW |