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

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

Issue 336893002: Qualify the generated includes in core (part 3) (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebaseline. Created 6 years, 6 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
« no previous file with comments | « Source/core/frame/FrameView.h ('k') | Source/core/frame/ImageBitmapTest.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 *
11 * This library is free software; you can redistribute it and/or 11 * This library is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU Library General Public 12 * modify it under the terms of the GNU Library General Public
13 * License as published by the Free Software Foundation; either 13 * License as published by the Free Software Foundation; either
14 * version 2 of the License, or (at your option) any later version. 14 * version 2 of the License, or (at your option) any later version.
15 * 15 *
16 * This library is distributed in the hope that it will be useful, 16 * This library is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of 17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * Library General Public License for more details. 19 * Library General Public License for more details.
20 * 20 *
21 * You should have received a copy of the GNU Library General Public License 21 * You should have received a copy of the GNU Library General Public License
22 * along with this library; see the file COPYING.LIB. If not, write to 22 * along with this library; see the file COPYING.LIB. If not, write to
23 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 23 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
24 * Boston, MA 02110-1301, USA. 24 * Boston, MA 02110-1301, USA.
25 */ 25 */
26 26
27 #include "config.h" 27 #include "config.h"
28 #include "core/frame/FrameView.h" 28 #include "core/frame/FrameView.h"
29 29
30 #include "HTMLNames.h" 30 #include "core/HTMLNames.h"
31 #include "RuntimeEnabledFeatures.h"
32 #include "core/accessibility/AXObjectCache.h" 31 #include "core/accessibility/AXObjectCache.h"
33 #include "core/css/FontFaceSet.h" 32 #include "core/css/FontFaceSet.h"
34 #include "core/css/resolver/StyleResolver.h" 33 #include "core/css/resolver/StyleResolver.h"
35 #include "core/dom/DocumentMarkerController.h" 34 #include "core/dom/DocumentMarkerController.h"
36 #include "core/dom/ScriptForbiddenScope.h" 35 #include "core/dom/ScriptForbiddenScope.h"
37 #include "core/editing/FrameSelection.h" 36 #include "core/editing/FrameSelection.h"
38 #include "core/events/OverflowEvent.h" 37 #include "core/events/OverflowEvent.h"
39 #include "core/fetch/ResourceFetcher.h" 38 #include "core/fetch/ResourceFetcher.h"
40 #include "core/fetch/ResourceLoadPriorityOptimizer.h" 39 #include "core/fetch/ResourceLoadPriorityOptimizer.h"
41 #include "core/frame/FrameHost.h" 40 #include "core/frame/FrameHost.h"
(...skipping 23 matching lines...) Expand all
65 #include "core/rendering/RenderTheme.h" 64 #include "core/rendering/RenderTheme.h"
66 #include "core/rendering/RenderView.h" 65 #include "core/rendering/RenderView.h"
67 #include "core/rendering/RenderWidget.h" 66 #include "core/rendering/RenderWidget.h"
68 #include "core/rendering/TextAutosizer.h" 67 #include "core/rendering/TextAutosizer.h"
69 #include "core/rendering/compositing/CompositedLayerMapping.h" 68 #include "core/rendering/compositing/CompositedLayerMapping.h"
70 #include "core/rendering/compositing/RenderLayerCompositor.h" 69 #include "core/rendering/compositing/RenderLayerCompositor.h"
71 #include "core/rendering/style/RenderStyle.h" 70 #include "core/rendering/style/RenderStyle.h"
72 #include "core/rendering/svg/RenderSVGRoot.h" 71 #include "core/rendering/svg/RenderSVGRoot.h"
73 #include "core/svg/SVGDocumentExtensions.h" 72 #include "core/svg/SVGDocumentExtensions.h"
74 #include "core/svg/SVGSVGElement.h" 73 #include "core/svg/SVGSVGElement.h"
74 #include "platform/RuntimeEnabledFeatures.h"
75 #include "platform/TraceEvent.h" 75 #include "platform/TraceEvent.h"
76 #include "platform/fonts/FontCache.h" 76 #include "platform/fonts/FontCache.h"
77 #include "platform/geometry/FloatRect.h" 77 #include "platform/geometry/FloatRect.h"
78 #include "platform/graphics/GraphicsContext.h" 78 #include "platform/graphics/GraphicsContext.h"
79 #include "platform/graphics/GraphicsLayerDebugInfo.h" 79 #include "platform/graphics/GraphicsLayerDebugInfo.h"
80 #include "platform/scroll/ScrollAnimator.h" 80 #include "platform/scroll/ScrollAnimator.h"
81 #include "platform/scroll/ScrollbarTheme.h" 81 #include "platform/scroll/ScrollbarTheme.h"
82 #include "platform/text/TextStream.h" 82 #include "platform/text/TextStream.h"
83 #include "wtf/CurrentTime.h" 83 #include "wtf/CurrentTime.h"
84 #include "wtf/TemporaryChange.h" 84 #include "wtf/TemporaryChange.h"
(...skipping 3210 matching lines...) Expand 10 before | Expand all | Expand 10 after
3295 void FrameView::willRemoveScrollbar(Scrollbar* scrollbar, ScrollbarOrientation o rientation) 3295 void FrameView::willRemoveScrollbar(Scrollbar* scrollbar, ScrollbarOrientation o rientation)
3296 { 3296 {
3297 ScrollableArea::willRemoveScrollbar(scrollbar, orientation); 3297 ScrollableArea::willRemoveScrollbar(scrollbar, orientation);
3298 if (AXObjectCache* cache = axObjectCache()) { 3298 if (AXObjectCache* cache = axObjectCache()) {
3299 cache->remove(scrollbar); 3299 cache->remove(scrollbar);
3300 cache->handleScrollbarUpdate(this); 3300 cache->handleScrollbarUpdate(this);
3301 } 3301 }
3302 } 3302 }
3303 3303
3304 } // namespace WebCore 3304 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/frame/FrameView.h ('k') | Source/core/frame/ImageBitmapTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698