| 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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 #include "core/plugins/PluginView.h" | 46 #include "core/plugins/PluginView.h" |
| 47 #include "core/rendering/RenderApplet.h" | 47 #include "core/rendering/RenderApplet.h" |
| 48 #include "core/rendering/RenderEmbeddedObject.h" | 48 #include "core/rendering/RenderEmbeddedObject.h" |
| 49 #include "core/rendering/RenderIFrame.h" | 49 #include "core/rendering/RenderIFrame.h" |
| 50 #include "core/rendering/RenderImage.h" | 50 #include "core/rendering/RenderImage.h" |
| 51 #include "core/rendering/RenderLayer.h" | 51 #include "core/rendering/RenderLayer.h" |
| 52 #include "core/rendering/RenderLayerCompositor.h" | 52 #include "core/rendering/RenderLayerCompositor.h" |
| 53 #include "core/rendering/RenderVideo.h" | 53 #include "core/rendering/RenderVideo.h" |
| 54 #include "core/rendering/RenderView.h" | 54 #include "core/rendering/RenderView.h" |
| 55 #include "core/rendering/style/KeyframeList.h" | 55 #include "core/rendering/style/KeyframeList.h" |
| 56 #include <wtf/CurrentTime.h> | 56 #include "wtf/CurrentTime.h" |
| 57 #include <wtf/text/StringBuilder.h> | 57 #include "wtf/text/StringBuilder.h" |
| 58 | 58 |
| 59 #include "core/platform/graphics/filters/custom/CustomFilterOperation.h" | 59 #include "core/platform/graphics/filters/custom/CustomFilterOperation.h" |
| 60 #include "core/rendering/FilterEffectRenderer.h" | 60 #include "core/rendering/FilterEffectRenderer.h" |
| 61 | 61 |
| 62 #include "core/platform/graphics/GraphicsContext3D.h" | 62 #include "core/platform/graphics/GraphicsContext3D.h" |
| 63 | 63 |
| 64 using namespace std; | 64 using namespace std; |
| 65 | 65 |
| 66 namespace WebCore { | 66 namespace WebCore { |
| 67 | 67 |
| (...skipping 1827 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1895 if (m_layerForVerticalScrollbar) | 1895 if (m_layerForVerticalScrollbar) |
| 1896 backingMemory += m_layerForVerticalScrollbar->backingStoreMemoryEstimate
(); | 1896 backingMemory += m_layerForVerticalScrollbar->backingStoreMemoryEstimate
(); |
| 1897 | 1897 |
| 1898 if (m_layerForScrollCorner) | 1898 if (m_layerForScrollCorner) |
| 1899 backingMemory += m_layerForScrollCorner->backingStoreMemoryEstimate(); | 1899 backingMemory += m_layerForScrollCorner->backingStoreMemoryEstimate(); |
| 1900 | 1900 |
| 1901 return backingMemory; | 1901 return backingMemory; |
| 1902 } | 1902 } |
| 1903 | 1903 |
| 1904 } // namespace WebCore | 1904 } // namespace WebCore |
| OLD | NEW |