| 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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 #include "ScrollingCoordinator.h" | 53 #include "ScrollingCoordinator.h" |
| 54 #include "Settings.h" | 54 #include "Settings.h" |
| 55 #include "StyleResolver.h" | 55 #include "StyleResolver.h" |
| 56 #include "TiledBacking.h" | 56 #include "TiledBacking.h" |
| 57 #include "WebCoreMemoryInstrumentation.h" | 57 #include "WebCoreMemoryInstrumentation.h" |
| 58 #include <wtf/CurrentTime.h> | 58 #include <wtf/CurrentTime.h> |
| 59 #include <wtf/text/StringBuilder.h> | 59 #include <wtf/text/StringBuilder.h> |
| 60 | 60 |
| 61 #if ENABLE(CSS_FILTERS) | 61 #if ENABLE(CSS_FILTERS) |
| 62 #include "FilterEffectRenderer.h" | 62 #include "FilterEffectRenderer.h" |
| 63 #if ENABLE(CSS_SHADERS) | |
| 64 #include "CustomFilterOperation.h" | 63 #include "CustomFilterOperation.h" |
| 65 #endif | 64 #endif |
| 66 #endif | |
| 67 | 65 |
| 68 #include "GraphicsContext3D.h" | 66 #include "GraphicsContext3D.h" |
| 69 | 67 |
| 70 using namespace std; | 68 using namespace std; |
| 71 | 69 |
| 72 namespace WebCore { | 70 namespace WebCore { |
| 73 | 71 |
| 74 using namespace HTMLNames; | 72 using namespace HTMLNames; |
| 75 | 73 |
| 76 static bool hasBoxDecorationsOrBackgroundImage(const RenderStyle*); | 74 static bool hasBoxDecorationsOrBackgroundImage(const RenderStyle*); |
| (...skipping 1995 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2072 info.addMember(m_childContainmentLayer, "childContainmentLayer"); | 2070 info.addMember(m_childContainmentLayer, "childContainmentLayer"); |
| 2073 info.addMember(m_maskLayer, "maskLayer"); | 2071 info.addMember(m_maskLayer, "maskLayer"); |
| 2074 info.addMember(m_layerForHorizontalScrollbar, "layerForHorizontalScrollbar")
; | 2072 info.addMember(m_layerForHorizontalScrollbar, "layerForHorizontalScrollbar")
; |
| 2075 info.addMember(m_layerForVerticalScrollbar, "layerForVerticalScrollbar"); | 2073 info.addMember(m_layerForVerticalScrollbar, "layerForVerticalScrollbar"); |
| 2076 info.addMember(m_layerForScrollCorner, "layerForScrollCorner"); | 2074 info.addMember(m_layerForScrollCorner, "layerForScrollCorner"); |
| 2077 info.addMember(m_scrollingLayer, "scrollingLayer"); | 2075 info.addMember(m_scrollingLayer, "scrollingLayer"); |
| 2078 info.addMember(m_scrollingContentsLayer, "scrollingContentsLayer"); | 2076 info.addMember(m_scrollingContentsLayer, "scrollingContentsLayer"); |
| 2079 } | 2077 } |
| 2080 | 2078 |
| 2081 } // namespace WebCore | 2079 } // namespace WebCore |
| OLD | NEW |