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

Side by Side Diff: Source/core/frame/FrameView.cpp

Issue 1045723009: Move core/layout/style to core/style (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase. Created 5 years, 8 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
« no previous file with comments | « Source/core/editing/SimplifyMarkupCommand.cpp ('k') | Source/core/html/HTMLDialogElement.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 #include "core/layout/LayoutListBox.h" 53 #include "core/layout/LayoutListBox.h"
54 #include "core/layout/LayoutPart.h" 54 #include "core/layout/LayoutPart.h"
55 #include "core/layout/LayoutScrollbar.h" 55 #include "core/layout/LayoutScrollbar.h"
56 #include "core/layout/LayoutScrollbarPart.h" 56 #include "core/layout/LayoutScrollbarPart.h"
57 #include "core/layout/LayoutTheme.h" 57 #include "core/layout/LayoutTheme.h"
58 #include "core/layout/LayoutView.h" 58 #include "core/layout/LayoutView.h"
59 #include "core/layout/TextAutosizer.h" 59 #include "core/layout/TextAutosizer.h"
60 #include "core/layout/compositing/CompositedDeprecatedPaintLayerMapping.h" 60 #include "core/layout/compositing/CompositedDeprecatedPaintLayerMapping.h"
61 #include "core/layout/compositing/CompositedSelectionBound.h" 61 #include "core/layout/compositing/CompositedSelectionBound.h"
62 #include "core/layout/compositing/DeprecatedPaintLayerCompositor.h" 62 #include "core/layout/compositing/DeprecatedPaintLayerCompositor.h"
63 #include "core/layout/style/ComputedStyle.h" 63 #include "core/style/ComputedStyle.h"
64 #include "core/layout/svg/LayoutSVGRoot.h" 64 #include "core/layout/svg/LayoutSVGRoot.h"
65 #include "core/loader/FrameLoader.h" 65 #include "core/loader/FrameLoader.h"
66 #include "core/loader/FrameLoaderClient.h" 66 #include "core/loader/FrameLoaderClient.h"
67 #include "core/page/Chrome.h" 67 #include "core/page/Chrome.h"
68 #include "core/page/ChromeClient.h" 68 #include "core/page/ChromeClient.h"
69 #include "core/page/EventHandler.h" 69 #include "core/page/EventHandler.h"
70 #include "core/page/FocusController.h" 70 #include "core/page/FocusController.h"
71 #include "core/page/FrameTree.h" 71 #include "core/page/FrameTree.h"
72 #include "core/page/Page.h" 72 #include "core/page/Page.h"
73 #include "core/page/scrolling/ScrollingCoordinator.h" 73 #include "core/page/scrolling/ScrollingCoordinator.h"
(...skipping 4000 matching lines...) Expand 10 before | Expand all | Expand 10 after
4074 { 4074 {
4075 Settings* settings = frame().settings(); 4075 Settings* settings = frame().settings();
4076 if (!settings || !settings->rootLayerScrolls()) 4076 if (!settings || !settings->rootLayerScrolls())
4077 return this; 4077 return this;
4078 4078
4079 LayoutView* layoutView = this->layoutView(); 4079 LayoutView* layoutView = this->layoutView();
4080 return layoutView ? layoutView->scrollableArea() : nullptr; 4080 return layoutView ? layoutView->scrollableArea() : nullptr;
4081 } 4081 }
4082 4082
4083 } // namespace blink 4083 } // namespace blink
OLDNEW
« no previous file with comments | « Source/core/editing/SimplifyMarkupCommand.cpp ('k') | Source/core/html/HTMLDialogElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698