OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2010 Google Inc. All rights reserved. | 2 * Copyright (C) 2010 Google Inc. All rights reserved. |
3 * Copyright (C) 2009 Apple Inc. All rights reserved. | 3 * Copyright (C) 2009 Apple Inc. All rights reserved. |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions are | 6 * modification, are permitted provided that the following conditions are |
7 * met: | 7 * met: |
8 * | 8 * |
9 * * Redistributions of source code must retain the above copyright | 9 * * 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 25 matching lines...) Expand all Loading... |
36 * Ideally the common code (mostly the code that keeps track of the layer hierar
chy) | 36 * Ideally the common code (mostly the code that keeps track of the layer hierar
chy) |
37 * should be kept separate and shared between platforms. It would be a well wort
hwhile | 37 * should be kept separate and shared between platforms. It would be a well wort
hwhile |
38 * effort once the Windows implementation (binaries and headers) of CoreAnimatio
n is | 38 * effort once the Windows implementation (binaries and headers) of CoreAnimatio
n is |
39 * checked in to the WebKit repository. Until then only Apple can make this happ
en. | 39 * checked in to the WebKit repository. Until then only Apple can make this happ
en. |
40 */ | 40 */ |
41 | 41 |
42 #include "config.h" | 42 #include "config.h" |
43 | 43 |
44 #include "core/platform/graphics/chromium/GraphicsLayerChromium.h" | 44 #include "core/platform/graphics/chromium/GraphicsLayerChromium.h" |
45 | 45 |
46 #include "FloatConversion.h" | |
47 #include "NativeImageSkia.h" | 46 #include "NativeImageSkia.h" |
48 #include "PlatformContextSkia.h" | 47 #include "PlatformContextSkia.h" |
49 #include "PlatformMemoryInstrumentation.h" | |
50 #include "ScrollableArea.h" | |
51 #include "SkImageFilter.h" | 48 #include "SkImageFilter.h" |
52 #include "SkMatrix44.h" | 49 #include "SkMatrix44.h" |
| 50 #include "core/platform/FloatConversion.h" |
| 51 #include "core/platform/PlatformMemoryInstrumentation.h" |
| 52 #include "core/platform/ScrollableArea.h" |
53 #include "core/platform/graphics/FloatRect.h" | 53 #include "core/platform/graphics/FloatRect.h" |
54 #include "core/platform/graphics/GraphicsContext.h" | 54 #include "core/platform/graphics/GraphicsContext.h" |
55 #include "core/platform/graphics/GraphicsLayerFactory.h" | 55 #include "core/platform/graphics/GraphicsLayerFactory.h" |
56 #include "core/platform/graphics/Image.h" | 56 #include "core/platform/graphics/Image.h" |
57 #include "core/platform/graphics/chromium/AnimationTranslationUtil.h" | 57 #include "core/platform/graphics/chromium/AnimationTranslationUtil.h" |
58 #include "core/platform/graphics/chromium/TransformSkMatrix44Conversions.h" | 58 #include "core/platform/graphics/chromium/TransformSkMatrix44Conversions.h" |
59 #include "core/platform/graphics/filters/SkiaImageFilterBuilder.h" | 59 #include "core/platform/graphics/filters/SkiaImageFilterBuilder.h" |
60 #include <public/Platform.h> | 60 #include <public/Platform.h> |
61 #include <public/WebAnimation.h> | 61 #include <public/WebAnimation.h> |
62 #include <public/WebCompositorSupport.h> | 62 #include <public/WebCompositorSupport.h> |
(...skipping 809 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
872 info.addMember(m_transformLayer, "transformLayer"); | 872 info.addMember(m_transformLayer, "transformLayer"); |
873 info.addMember(m_imageLayer, "imageLayer"); | 873 info.addMember(m_imageLayer, "imageLayer"); |
874 info.addMember(m_contentsLayer, "contentsLayer"); | 874 info.addMember(m_contentsLayer, "contentsLayer"); |
875 info.addMember(m_linkHighlight, "linkHighlight"); | 875 info.addMember(m_linkHighlight, "linkHighlight"); |
876 info.addMember(m_opaqueRectTrackingContentLayerDelegate, "opaqueRectTracking
ContentLayerDelegate"); | 876 info.addMember(m_opaqueRectTrackingContentLayerDelegate, "opaqueRectTracking
ContentLayerDelegate"); |
877 info.addMember(m_animationIdMap, "animationIdMap"); | 877 info.addMember(m_animationIdMap, "animationIdMap"); |
878 info.addMember(m_scrollableArea, "scrollableArea"); | 878 info.addMember(m_scrollableArea, "scrollableArea"); |
879 } | 879 } |
880 | 880 |
881 } // namespace WebCore | 881 } // namespace WebCore |
OLD | NEW |