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

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

Issue 2466383004: blink: Cleanup class forward declarations (Closed)
Patch Set: Created 4 years, 1 month 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
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 #include "wtf/AutoReset.h" 51 #include "wtf/AutoReset.h"
52 #include "wtf/Forward.h" 52 #include "wtf/Forward.h"
53 #include "wtf/HashSet.h" 53 #include "wtf/HashSet.h"
54 #include "wtf/ListHashSet.h" 54 #include "wtf/ListHashSet.h"
55 #include "wtf/text/WTFString.h" 55 #include "wtf/text/WTFString.h"
56 #include <memory> 56 #include <memory>
57 57
58 namespace blink { 58 namespace blink {
59 59
60 class AXObjectCache; 60 class AXObjectCache;
61 class CancellableTaskFactory;
62 class ComputedStyle; 61 class ComputedStyle;
63 class DocumentLifecycle; 62 class DocumentLifecycle;
64 class Cursor; 63 class Cursor;
65 class Element; 64 class Element;
66 class ElementVisibilityObserver; 65 class ElementVisibilityObserver;
67 class FloatSize; 66 class FloatSize;
68 class JSONArray; 67 class JSONArray;
69 class JSONObject; 68 class JSONObject;
70 class LayoutItem; 69 class LayoutItem;
71 class LayoutViewItem; 70 class LayoutViewItem;
(...skipping 1056 matching lines...) Expand 10 before | Expand all | Expand 10 after
1128 widget.isFrameView()); 1127 widget.isFrameView());
1129 DEFINE_TYPE_CASTS(FrameView, 1128 DEFINE_TYPE_CASTS(FrameView,
1130 ScrollableArea, 1129 ScrollableArea,
1131 scrollableArea, 1130 scrollableArea,
1132 scrollableArea->isFrameView(), 1131 scrollableArea->isFrameView(),
1133 scrollableArea.isFrameView()); 1132 scrollableArea.isFrameView());
1134 1133
1135 } // namespace blink 1134 } // namespace blink
1136 1135
1137 #endif // FrameView_h 1136 #endif // FrameView_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698