| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009, 2010, 2011 Apple Inc. All rights reserved. | 2 * Copyright (C) 2009, 2010, 2011 Apple Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 #include "ScrollingCoordinator.h" | 50 #include "ScrollingCoordinator.h" |
| 51 #include "Settings.h" | 51 #include "Settings.h" |
| 52 #include "StyleResolver.h" | 52 #include "StyleResolver.h" |
| 53 #include "WebCoreMemoryInstrumentation.h" | 53 #include "WebCoreMemoryInstrumentation.h" |
| 54 #include "core/platform/graphics/FontCache.h" | 54 #include "core/platform/graphics/FontCache.h" |
| 55 #include "core/platform/graphics/GraphicsContext.h" | 55 #include "core/platform/graphics/GraphicsContext.h" |
| 56 #include "core/platform/graphics/GraphicsLayer.h" | 56 #include "core/platform/graphics/GraphicsLayer.h" |
| 57 #include <wtf/CurrentTime.h> | 57 #include <wtf/CurrentTime.h> |
| 58 #include <wtf/text/StringBuilder.h> | 58 #include <wtf/text/StringBuilder.h> |
| 59 | 59 |
| 60 #include "CustomFilterOperation.h" | |
| 61 #include "FilterEffectRenderer.h" | 60 #include "FilterEffectRenderer.h" |
| 61 #include "core/platform/graphics/filters/custom/CustomFilterOperation.h" |
| 62 | 62 |
| 63 #include "core/platform/graphics/GraphicsContext3D.h" | 63 #include "core/platform/graphics/GraphicsContext3D.h" |
| 64 | 64 |
| 65 using namespace std; | 65 using namespace std; |
| 66 | 66 |
| 67 namespace WebCore { | 67 namespace WebCore { |
| 68 | 68 |
| 69 using namespace HTMLNames; | 69 using namespace HTMLNames; |
| 70 | 70 |
| 71 static bool hasBoxDecorationsOrBackgroundImage(const RenderStyle*); | 71 static bool hasBoxDecorationsOrBackgroundImage(const RenderStyle*); |
| (...skipping 1909 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1981 info.addMember(m_childContainmentLayer, "childContainmentLayer"); | 1981 info.addMember(m_childContainmentLayer, "childContainmentLayer"); |
| 1982 info.addMember(m_maskLayer, "maskLayer"); | 1982 info.addMember(m_maskLayer, "maskLayer"); |
| 1983 info.addMember(m_layerForHorizontalScrollbar, "layerForHorizontalScrollbar")
; | 1983 info.addMember(m_layerForHorizontalScrollbar, "layerForHorizontalScrollbar")
; |
| 1984 info.addMember(m_layerForVerticalScrollbar, "layerForVerticalScrollbar"); | 1984 info.addMember(m_layerForVerticalScrollbar, "layerForVerticalScrollbar"); |
| 1985 info.addMember(m_layerForScrollCorner, "layerForScrollCorner"); | 1985 info.addMember(m_layerForScrollCorner, "layerForScrollCorner"); |
| 1986 info.addMember(m_scrollingLayer, "scrollingLayer"); | 1986 info.addMember(m_scrollingLayer, "scrollingLayer"); |
| 1987 info.addMember(m_scrollingContentsLayer, "scrollingContentsLayer"); | 1987 info.addMember(m_scrollingContentsLayer, "scrollingContentsLayer"); |
| 1988 } | 1988 } |
| 1989 | 1989 |
| 1990 } // namespace WebCore | 1990 } // namespace WebCore |
| OLD | NEW |