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

Side by Side Diff: third_party/WebKit/Source/core/frame/FrameView.h

Issue 2700123003: DO NOT COMMIT: Results of running old (current) clang-format on Blink (Closed)
Patch Set: Created 3 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
OLDNEW
1 /* 1 /*
2 Copyright (C) 1997 Martin Jones (mjones@kde.org) 2 Copyright (C) 1997 Martin Jones (mjones@kde.org)
3 (C) 1998 Waldo Bastian (bastian@kde.org) 3 (C) 1998 Waldo Bastian (bastian@kde.org)
4 (C) 1998, 1999 Torben Weis (weis@kde.org) 4 (C) 1998, 1999 Torben Weis (weis@kde.org)
5 (C) 1999 Lars Knoll (knoll@kde.org) 5 (C) 1999 Lars Knoll (knoll@kde.org)
6 (C) 1999 Antti Koivisto (koivisto@kde.org) 6 (C) 1999 Antti Koivisto (koivisto@kde.org)
7 Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights 7 Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights
8 reserved. 8 reserved.
9 9
10 This library is free software; you can redistribute it and/or 10 This library is free software; you can redistribute it and/or
11 modify it under the terms of the GNU Library General Public 11 modify it under the terms of the GNU Library General Public
12 License as published by the Free Software Foundation; either 12 License as published by the Free Software Foundation; either
13 version 2 of the License, or (at your option) any later version. 13 version 2 of the License, or (at your option) any later version.
14 14
15 This library is distributed in the hope that it will be useful, 15 This library is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of 16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 Library General Public License for more details. 18 Library General Public License for more details.
19 19
20 You should have received a copy of the GNU Library General Public License 20 You should have received a copy of the GNU Library General Public License
21 along with this library; see the file COPYING.LIB. If not, write to 21 along with this library; see the file COPYING.LIB. If not, write to
22 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 22 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
23 Boston, MA 02110-1301, USA. 23 Boston, MA 02110-1301, USA.
24 */ 24 */
25 25
26 #ifndef FrameView_h 26 #ifndef FrameView_h
27 #define FrameView_h 27 #define FrameView_h
28 28
29 #include <memory>
29 #include "core/CoreExport.h" 30 #include "core/CoreExport.h"
30 #include "core/dom/DocumentLifecycle.h" 31 #include "core/dom/DocumentLifecycle.h"
31 #include "core/frame/FrameViewAutoSizeInfo.h" 32 #include "core/frame/FrameViewAutoSizeInfo.h"
32 #include "core/frame/LayoutSubtreeRootList.h" 33 #include "core/frame/LayoutSubtreeRootList.h"
33 #include "core/frame/RootFrameViewport.h" 34 #include "core/frame/RootFrameViewport.h"
34 #include "core/layout/MapCoordinatesFlags.h" 35 #include "core/layout/MapCoordinatesFlags.h"
35 #include "core/layout/ScrollAnchor.h" 36 #include "core/layout/ScrollAnchor.h"
36 #include "core/paint/FirstMeaningfulPaintDetector.h" 37 #include "core/paint/FirstMeaningfulPaintDetector.h"
37 #include "core/paint/ObjectPaintProperties.h" 38 #include "core/paint/ObjectPaintProperties.h"
38 #include "core/paint/PaintInvalidationCapableScrollableArea.h" 39 #include "core/paint/PaintInvalidationCapableScrollableArea.h"
(...skipping 11 matching lines...) Expand all
50 #include "platform/scroll/Scrollbar.h" 51 #include "platform/scroll/Scrollbar.h"
51 #include "public/platform/ShapeProperties.h" 52 #include "public/platform/ShapeProperties.h"
52 #include "public/platform/WebDisplayMode.h" 53 #include "public/platform/WebDisplayMode.h"
53 #include "public/platform/WebRect.h" 54 #include "public/platform/WebRect.h"
54 #include "wtf/Allocator.h" 55 #include "wtf/Allocator.h"
55 #include "wtf/AutoReset.h" 56 #include "wtf/AutoReset.h"
56 #include "wtf/Forward.h" 57 #include "wtf/Forward.h"
57 #include "wtf/HashSet.h" 58 #include "wtf/HashSet.h"
58 #include "wtf/ListHashSet.h" 59 #include "wtf/ListHashSet.h"
59 #include "wtf/text/WTFString.h" 60 #include "wtf/text/WTFString.h"
60 #include <memory>
61 61
62 namespace blink { 62 namespace blink {
63 63
64 class AXObjectCache; 64 class AXObjectCache;
65 class ComputedStyle; 65 class ComputedStyle;
66 class DocumentLifecycle; 66 class DocumentLifecycle;
67 class Cursor; 67 class Cursor;
68 class Element; 68 class Element;
69 class ElementVisibilityObserver; 69 class ElementVisibilityObserver;
70 class Frame; 70 class Frame;
(...skipping 1180 matching lines...) Expand 10 before | Expand all | Expand 10 after
1251 widget.isFrameView()); 1251 widget.isFrameView());
1252 DEFINE_TYPE_CASTS(FrameView, 1252 DEFINE_TYPE_CASTS(FrameView,
1253 ScrollableArea, 1253 ScrollableArea,
1254 scrollableArea, 1254 scrollableArea,
1255 scrollableArea->isFrameView(), 1255 scrollableArea->isFrameView(),
1256 scrollableArea.isFrameView()); 1256 scrollableArea.isFrameView());
1257 1257
1258 } // namespace blink 1258 } // namespace blink
1259 1259
1260 #endif // FrameView_h 1260 #endif // FrameView_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/frame/FrameHost.h ('k') | third_party/WebKit/Source/core/frame/FrameViewTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698