| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1998, 1999 Torben Weis <weis@kde.org> | 2 * Copyright (C) 1998, 1999 Torben Weis <weis@kde.org> |
| 3 * 1999 Lars Knoll <knoll@kde.org> | 3 * 1999 Lars Knoll <knoll@kde.org> |
| 4 * 1999 Antti Koivisto <koivisto@kde.org> | 4 * 1999 Antti Koivisto <koivisto@kde.org> |
| 5 * 2000 Dirk Mueller <mueller@kde.org> | 5 * 2000 Dirk Mueller <mueller@kde.org> |
| 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. | 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. |
| 7 * (C) 2006 Graham Dennis (graham.dennis@gmail.com) | 7 * (C) 2006 Graham Dennis (graham.dennis@gmail.com) |
| 8 * (C) 2006 Alexey Proskuryakov (ap@nypop.com) | 8 * (C) 2006 Alexey Proskuryakov (ap@nypop.com) |
| 9 * Copyright (C) 2009 Google Inc. All rights reserved. | 9 * Copyright (C) 2009 Google Inc. All rights reserved. |
| 10 * | 10 * |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 #include "core/dom/IntersectionObserverCallback.h" | 37 #include "core/dom/IntersectionObserverCallback.h" |
| 38 #include "core/dom/IntersectionObserverController.h" | 38 #include "core/dom/IntersectionObserverController.h" |
| 39 #include "core/dom/IntersectionObserverInit.h" | 39 #include "core/dom/IntersectionObserverInit.h" |
| 40 #include "core/dom/StyleChangeReason.h" | 40 #include "core/dom/StyleChangeReason.h" |
| 41 #include "core/dom/TaskRunnerHelper.h" | 41 #include "core/dom/TaskRunnerHelper.h" |
| 42 #include "core/editing/EditingUtilities.h" | 42 #include "core/editing/EditingUtilities.h" |
| 43 #include "core/editing/FrameSelection.h" | 43 #include "core/editing/FrameSelection.h" |
| 44 #include "core/editing/RenderedPosition.h" | 44 #include "core/editing/RenderedPosition.h" |
| 45 #include "core/editing/markers/DocumentMarkerController.h" | 45 #include "core/editing/markers/DocumentMarkerController.h" |
| 46 #include "core/events/ErrorEvent.h" | 46 #include "core/events/ErrorEvent.h" |
| 47 #include "core/fetch/ResourceFetcher.h" | |
| 48 #include "core/frame/BrowserControls.h" | 47 #include "core/frame/BrowserControls.h" |
| 49 #include "core/frame/EventHandlerRegistry.h" | 48 #include "core/frame/EventHandlerRegistry.h" |
| 50 #include "core/frame/FrameHost.h" | 49 #include "core/frame/FrameHost.h" |
| 51 #include "core/frame/LocalFrame.h" | 50 #include "core/frame/LocalFrame.h" |
| 52 #include "core/frame/Location.h" | 51 #include "core/frame/Location.h" |
| 53 #include "core/frame/PageScaleConstraintsSet.h" | 52 #include "core/frame/PageScaleConstraintsSet.h" |
| 54 #include "core/frame/PerformanceMonitor.h" | 53 #include "core/frame/PerformanceMonitor.h" |
| 55 #include "core/frame/Settings.h" | 54 #include "core/frame/Settings.h" |
| 56 #include "core/frame/VisualViewport.h" | 55 #include "core/frame/VisualViewport.h" |
| 57 #include "core/html/HTMLFrameElement.h" | 56 #include "core/html/HTMLFrameElement.h" |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 #include "platform/graphics/GraphicsContext.h" | 111 #include "platform/graphics/GraphicsContext.h" |
| 113 #include "platform/graphics/GraphicsLayer.h" | 112 #include "platform/graphics/GraphicsLayer.h" |
| 114 #include "platform/graphics/GraphicsLayerDebugInfo.h" | 113 #include "platform/graphics/GraphicsLayerDebugInfo.h" |
| 115 #include "platform/graphics/compositing/PaintArtifactCompositor.h" | 114 #include "platform/graphics/compositing/PaintArtifactCompositor.h" |
| 116 #include "platform/graphics/paint/CullRect.h" | 115 #include "platform/graphics/paint/CullRect.h" |
| 117 #include "platform/graphics/paint/PaintController.h" | 116 #include "platform/graphics/paint/PaintController.h" |
| 118 #include "platform/graphics/paint/ScopedPaintChunkProperties.h" | 117 #include "platform/graphics/paint/ScopedPaintChunkProperties.h" |
| 119 #include "platform/instrumentation/tracing/TraceEvent.h" | 118 #include "platform/instrumentation/tracing/TraceEvent.h" |
| 120 #include "platform/instrumentation/tracing/TracedValue.h" | 119 #include "platform/instrumentation/tracing/TracedValue.h" |
| 121 #include "platform/json/JSONValues.h" | 120 #include "platform/json/JSONValues.h" |
| 121 #include "platform/loader/fetch/ResourceFetcher.h" |
| 122 #include "platform/scroll/ScrollAnimatorBase.h" | 122 #include "platform/scroll/ScrollAnimatorBase.h" |
| 123 #include "platform/scroll/ScrollbarTheme.h" | 123 #include "platform/scroll/ScrollbarTheme.h" |
| 124 #include "platform/text/TextStream.h" | 124 #include "platform/text/TextStream.h" |
| 125 #include "public/platform/WebDisplayItemList.h" | 125 #include "public/platform/WebDisplayItemList.h" |
| 126 #include "wtf/CurrentTime.h" | 126 #include "wtf/CurrentTime.h" |
| 127 #include "wtf/PtrUtil.h" | 127 #include "wtf/PtrUtil.h" |
| 128 #include "wtf/StdLibExtras.h" | 128 #include "wtf/StdLibExtras.h" |
| 129 #include <memory> | 129 #include <memory> |
| 130 | 130 |
| 131 // Used to check for dirty layouts violating document lifecycle rules. | 131 // Used to check for dirty layouts violating document lifecycle rules. |
| (...skipping 4793 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4925 reason < MainThreadScrollingReason::kMainThreadScrollingReasonCount; | 4925 reason < MainThreadScrollingReason::kMainThreadScrollingReasonCount; |
| 4926 ++reason) { | 4926 ++reason) { |
| 4927 if (m_mainThreadScrollingReasonsCounter[reason] > 0) { | 4927 if (m_mainThreadScrollingReasonsCounter[reason] > 0) { |
| 4928 reasons |= 1 << reason; | 4928 reasons |= 1 << reason; |
| 4929 } | 4929 } |
| 4930 } | 4930 } |
| 4931 return reasons; | 4931 return reasons; |
| 4932 } | 4932 } |
| 4933 | 4933 |
| 4934 } // namespace blink | 4934 } // namespace blink |
| OLD | NEW |