| 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 "NativeImageSkia.h" | |
| 47 #include "PlatformContextSkia.h" | |
| 48 #include "SkImageFilter.h" | 46 #include "SkImageFilter.h" |
| 49 #include "SkMatrix44.h" | 47 #include "SkMatrix44.h" |
| 50 #include "core/platform/FloatConversion.h" | 48 #include "core/platform/FloatConversion.h" |
| 51 #include "core/platform/PlatformMemoryInstrumentation.h" | 49 #include "core/platform/PlatformMemoryInstrumentation.h" |
| 52 #include "core/platform/ScrollableArea.h" | 50 #include "core/platform/ScrollableArea.h" |
| 53 #include "core/platform/graphics/FloatRect.h" | 51 #include "core/platform/graphics/FloatRect.h" |
| 54 #include "core/platform/graphics/GraphicsContext.h" | 52 #include "core/platform/graphics/GraphicsContext.h" |
| 55 #include "core/platform/graphics/GraphicsLayerFactory.h" | 53 #include "core/platform/graphics/GraphicsLayerFactory.h" |
| 56 #include "core/platform/graphics/Image.h" | 54 #include "core/platform/graphics/Image.h" |
| 57 #include "core/platform/graphics/chromium/AnimationTranslationUtil.h" | 55 #include "core/platform/graphics/chromium/AnimationTranslationUtil.h" |
| 58 #include "core/platform/graphics/chromium/TransformSkMatrix44Conversions.h" | 56 #include "core/platform/graphics/chromium/TransformSkMatrix44Conversions.h" |
| 59 #include "core/platform/graphics/filters/SkiaImageFilterBuilder.h" | 57 #include "core/platform/graphics/filters/SkiaImageFilterBuilder.h" |
| 58 #include "core/platform/graphics/skia/NativeImageSkia.h" |
| 59 #include "core/platform/graphics/skia/PlatformContextSkia.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> |
| 63 #include <public/WebContentLayer.h> | 63 #include <public/WebContentLayer.h> |
| 64 #include <public/WebFilterOperation.h> | 64 #include <public/WebFilterOperation.h> |
| 65 #include <public/WebFilterOperations.h> | 65 #include <public/WebFilterOperations.h> |
| 66 #include <public/WebFloatPoint.h> | 66 #include <public/WebFloatPoint.h> |
| 67 #include <public/WebFloatRect.h> | 67 #include <public/WebFloatRect.h> |
| 68 #include <public/WebImageLayer.h> | 68 #include <public/WebImageLayer.h> |
| 69 #include <public/WebSize.h> | 69 #include <public/WebSize.h> |
| (...skipping 807 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 877 info.addMember(m_transformLayer, "transformLayer"); | 877 info.addMember(m_transformLayer, "transformLayer"); |
| 878 info.addMember(m_imageLayer, "imageLayer"); | 878 info.addMember(m_imageLayer, "imageLayer"); |
| 879 info.addMember(m_contentsLayer, "contentsLayer"); | 879 info.addMember(m_contentsLayer, "contentsLayer"); |
| 880 info.addMember(m_linkHighlight, "linkHighlight"); | 880 info.addMember(m_linkHighlight, "linkHighlight"); |
| 881 info.addMember(m_opaqueRectTrackingContentLayerDelegate, "opaqueRectTracking
ContentLayerDelegate"); | 881 info.addMember(m_opaqueRectTrackingContentLayerDelegate, "opaqueRectTracking
ContentLayerDelegate"); |
| 882 info.addMember(m_animationIdMap, "animationIdMap"); | 882 info.addMember(m_animationIdMap, "animationIdMap"); |
| 883 info.addMember(m_scrollableArea, "scrollableArea"); | 883 info.addMember(m_scrollableArea, "scrollableArea"); |
| 884 } | 884 } |
| 885 | 885 |
| 886 } // namespace WebCore | 886 } // namespace WebCore |
| OLD | NEW |