| 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 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 #include "platform/geometry/FloatRect.h" | 107 #include "platform/geometry/FloatRect.h" |
| 108 #include "platform/geometry/LayoutRect.h" | 108 #include "platform/geometry/LayoutRect.h" |
| 109 #include "platform/graphics/GraphicsContext.h" | 109 #include "platform/graphics/GraphicsContext.h" |
| 110 #include "platform/graphics/GraphicsLayer.h" | 110 #include "platform/graphics/GraphicsLayer.h" |
| 111 #include "platform/graphics/GraphicsLayerDebugInfo.h" | 111 #include "platform/graphics/GraphicsLayerDebugInfo.h" |
| 112 #include "platform/graphics/compositing/PaintArtifactCompositor.h" | 112 #include "platform/graphics/compositing/PaintArtifactCompositor.h" |
| 113 #include "platform/graphics/paint/CullRect.h" | 113 #include "platform/graphics/paint/CullRect.h" |
| 114 #include "platform/graphics/paint/PaintController.h" | 114 #include "platform/graphics/paint/PaintController.h" |
| 115 #include "platform/graphics/paint/ScopedPaintChunkProperties.h" | 115 #include "platform/graphics/paint/ScopedPaintChunkProperties.h" |
| 116 #include "platform/json/JSONValues.h" | 116 #include "platform/json/JSONValues.h" |
| 117 #include "platform/scheduler/CancellableTaskFactory.h" | |
| 118 #include "platform/scroll/ScrollAnimatorBase.h" | 117 #include "platform/scroll/ScrollAnimatorBase.h" |
| 119 #include "platform/scroll/ScrollbarTheme.h" | 118 #include "platform/scroll/ScrollbarTheme.h" |
| 120 #include "platform/text/TextStream.h" | 119 #include "platform/text/TextStream.h" |
| 121 #include "platform/tracing/TraceEvent.h" | 120 #include "platform/tracing/TraceEvent.h" |
| 122 #include "platform/tracing/TracedValue.h" | 121 #include "platform/tracing/TracedValue.h" |
| 123 #include "public/platform/WebDisplayItemList.h" | 122 #include "public/platform/WebDisplayItemList.h" |
| 124 #include "public/platform/WebFrameScheduler.h" | 123 #include "public/platform/WebFrameScheduler.h" |
| 125 #include "wtf/CurrentTime.h" | 124 #include "wtf/CurrentTime.h" |
| 126 #include "wtf/PtrUtil.h" | 125 #include "wtf/PtrUtil.h" |
| 127 #include "wtf/StdLibExtras.h" | 126 #include "wtf/StdLibExtras.h" |
| (...skipping 4457 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4585 DCHECK(m_frame->isMainFrame()); | 4584 DCHECK(m_frame->isMainFrame()); |
| 4586 return m_initialViewportSize.width(); | 4585 return m_initialViewportSize.width(); |
| 4587 } | 4586 } |
| 4588 | 4587 |
| 4589 int FrameView::initialViewportHeight() const { | 4588 int FrameView::initialViewportHeight() const { |
| 4590 DCHECK(m_frame->isMainFrame()); | 4589 DCHECK(m_frame->isMainFrame()); |
| 4591 return m_initialViewportSize.height(); | 4590 return m_initialViewportSize.height(); |
| 4592 } | 4591 } |
| 4593 | 4592 |
| 4594 } // namespace blink | 4593 } // namespace blink |
| OLD | NEW |