Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1724)

Side by Side Diff: Source/core/rendering/RenderView.cpp

Issue 951453003: Rename rendering/RenderScrollbar* to layout/LayoutScrollbar* (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 18 matching lines...) Expand all
29 #include "core/html/HTMLFrameOwnerElement.h" 29 #include "core/html/HTMLFrameOwnerElement.h"
30 #include "core/html/HTMLIFrameElement.h" 30 #include "core/html/HTMLIFrameElement.h"
31 #include "core/html/HTMLTextFormControlElement.h" 31 #include "core/html/HTMLTextFormControlElement.h"
32 #include "core/layout/ColumnInfo.h" 32 #include "core/layout/ColumnInfo.h"
33 #include "core/layout/HitTestResult.h" 33 #include "core/layout/HitTestResult.h"
34 #include "core/layout/Layer.h" 34 #include "core/layout/Layer.h"
35 #include "core/layout/LayoutFlowThread.h" 35 #include "core/layout/LayoutFlowThread.h"
36 #include "core/layout/LayoutGeometryMap.h" 36 #include "core/layout/LayoutGeometryMap.h"
37 #include "core/layout/LayoutPart.h" 37 #include "core/layout/LayoutPart.h"
38 #include "core/layout/LayoutQuote.h" 38 #include "core/layout/LayoutQuote.h"
39 #include "core/layout/LayoutScrollbarPart.h"
39 #include "core/layout/compositing/CompositedLayerMapping.h" 40 #include "core/layout/compositing/CompositedLayerMapping.h"
40 #include "core/layout/compositing/LayerCompositor.h" 41 #include "core/layout/compositing/LayerCompositor.h"
41 #include "core/page/Page.h" 42 #include "core/page/Page.h"
42 #include "core/paint/ViewPainter.h" 43 #include "core/paint/ViewPainter.h"
43 #include "core/rendering/RenderScrollbarPart.h"
44 #include "core/svg/SVGDocumentExtensions.h" 44 #include "core/svg/SVGDocumentExtensions.h"
45 #include "platform/TraceEvent.h" 45 #include "platform/TraceEvent.h"
46 #include "platform/geometry/FloatQuad.h" 46 #include "platform/geometry/FloatQuad.h"
47 #include "platform/geometry/TransformState.h" 47 #include "platform/geometry/TransformState.h"
48 #include "platform/graphics/paint/DisplayItemList.h" 48 #include "platform/graphics/paint/DisplayItemList.h"
49 49
50 namespace blink { 50 namespace blink {
51 51
52 RenderView::RenderView(Document* document) 52 RenderView::RenderView(Document* document)
53 : RenderBlockFlow(document) 53 : RenderBlockFlow(document)
(...skipping 929 matching lines...) Expand 10 before | Expand all | Expand 10 after
983 } 983 }
984 984
985 void RenderView::invalidateDisplayItemClients(DisplayItemList* displayItemList) const 985 void RenderView::invalidateDisplayItemClients(DisplayItemList* displayItemList) const
986 { 986 {
987 RenderBlockFlow::invalidateDisplayItemClients(displayItemList); 987 RenderBlockFlow::invalidateDisplayItemClients(displayItemList);
988 if (m_frameView) 988 if (m_frameView)
989 displayItemList->invalidate(m_frameView->displayItemClient()); 989 displayItemList->invalidate(m_frameView->displayItemClient());
990 } 990 }
991 991
992 } // namespace blink 992 } // namespace blink
OLDNEW
« no previous file with comments | « Source/core/rendering/RenderScrollbarTheme.cpp ('k') | public/platform/WebScrollbarThemePainter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698