| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserv
ed. | 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserv
ed. |
| 4 * | 4 * |
| 5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
| 6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
| 7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
| 8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
| 9 * | 9 * |
| 10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 #include "core/layout/LayoutView.h" | 22 #include "core/layout/LayoutView.h" |
| 23 | 23 |
| 24 #include "core/dom/Document.h" | 24 #include "core/dom/Document.h" |
| 25 #include "core/dom/Element.h" | 25 #include "core/dom/Element.h" |
| 26 #include "core/editing/FrameSelection.h" | 26 #include "core/editing/FrameSelection.h" |
| 27 #include "core/frame/FrameView.h" | 27 #include "core/frame/FrameView.h" |
| 28 #include "core/frame/LocalFrame.h" | 28 #include "core/frame/LocalFrame.h" |
| 29 #include "core/frame/Settings.h" | 29 #include "core/frame/Settings.h" |
| 30 #include "core/html/HTMLFrameOwnerElement.h" | 30 #include "core/html/HTMLFrameOwnerElement.h" |
| 31 #include "core/html/HTMLIFrameElement.h" | 31 #include "core/html/HTMLIFrameElement.h" |
| 32 #include "core/html/HTMLVideoElement.h" |
| 32 #include "core/inspector/InspectorTraceEvents.h" | 33 #include "core/inspector/InspectorTraceEvents.h" |
| 33 #include "core/layout/HitTestResult.h" | 34 #include "core/layout/HitTestResult.h" |
| 34 #include "core/layout/LayoutFlowThread.h" | 35 #include "core/layout/LayoutFlowThread.h" |
| 35 #include "core/layout/LayoutGeometryMap.h" | 36 #include "core/layout/LayoutGeometryMap.h" |
| 37 #include "core/layout/LayoutMedia.h" |
| 36 #include "core/layout/LayoutPart.h" | 38 #include "core/layout/LayoutPart.h" |
| 37 #include "core/layout/LayoutQuote.h" | 39 #include "core/layout/LayoutQuote.h" |
| 38 #include "core/layout/LayoutScrollbarPart.h" | 40 #include "core/layout/LayoutScrollbarPart.h" |
| 39 #include "core/layout/compositing/PaintLayerCompositor.h" | 41 #include "core/layout/compositing/PaintLayerCompositor.h" |
| 40 #include "core/page/Page.h" | 42 #include "core/page/Page.h" |
| 41 #include "core/paint/PaintLayer.h" | 43 #include "core/paint/PaintLayer.h" |
| 42 #include "core/paint/ViewPainter.h" | 44 #include "core/paint/ViewPainter.h" |
| 43 #include "core/svg/SVGDocumentExtensions.h" | 45 #include "core/svg/SVGDocumentExtensions.h" |
| 44 #include "platform/TraceEvent.h" | 46 #include "platform/TraceEvent.h" |
| 45 #include "platform/TracedValue.h" | 47 #include "platform/TracedValue.h" |
| (...skipping 894 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 940 float scale = m_frameView ? m_frameView->frame().pageZoomFactor() : 1; | 942 float scale = m_frameView ? m_frameView->frame().pageZoomFactor() : 1; |
| 941 return viewHeight(IncludeScrollbars) / scale; | 943 return viewHeight(IncludeScrollbars) / scale; |
| 942 } | 944 } |
| 943 | 945 |
| 944 void LayoutView::willBeDestroyed() | 946 void LayoutView::willBeDestroyed() |
| 945 { | 947 { |
| 946 LayoutBlockFlow::willBeDestroyed(); | 948 LayoutBlockFlow::willBeDestroyed(); |
| 947 m_compositor.clear(); | 949 m_compositor.clear(); |
| 948 } | 950 } |
| 949 | 951 |
| 952 void LayoutView::registerMediaForPositionChangeNotification(LayoutMedia& media) |
| 953 { |
| 954 if (!m_mediaForPositionNotification.contains(&media)) |
| 955 m_mediaForPositionNotification.append(&media); |
| 956 } |
| 957 |
| 958 void LayoutView::unregisterMediaForPositionChangeNotification(LayoutMedia& media
) |
| 959 { |
| 960 size_t at = m_mediaForPositionNotification.find(&media); |
| 961 if (at != kNotFound) |
| 962 m_mediaForPositionNotification.remove(at); |
| 963 } |
| 964 |
| 965 void LayoutView::sendMediaPositionChangeNotifications(const IntRect& visibleRect
) |
| 966 { |
| 967 for (auto& media : m_mediaForPositionNotification) { |
| 968 media->notifyPositionMayHaveChanged(visibleRect); |
| 969 } |
| 970 } |
| 971 |
| 950 } // namespace blink | 972 } // namespace blink |
| OLD | NEW |