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

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

Issue 2542203004: blink: Cleanup class/struct forward declarations (Closed)
Patch Set: Created 4 years 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) 1998, 1999 Torben Weis <weis@kde.org> 2 * Copyright (C) 1998, 1999 Torben Weis <weis@kde.org>
3 * 1999-2001 Lars Knoll <knoll@kde.org> 3 * 1999-2001 Lars Knoll <knoll@kde.org>
4 * 1999-2001 Antti Koivisto <koivisto@kde.org> 4 * 1999-2001 Antti Koivisto <koivisto@kde.org>
5 * 2000-2001 Simon Hausmann <hausmann@kde.org> 5 * 2000-2001 Simon Hausmann <hausmann@kde.org>
6 * 2000-2001 Dirk Mueller <mueller@kde.org> 6 * 2000-2001 Dirk Mueller <mueller@kde.org>
7 * 2000 Stefan Schimanski <1Stein@gmx.de> 7 * 2000 Stefan Schimanski <1Stein@gmx.de>
8 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights 8 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights
9 * reserved. 9 * reserved.
10 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) 10 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies)
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 class InterfaceProvider; 63 class InterfaceProvider;
64 class InterfaceRegistry; 64 class InterfaceRegistry;
65 class IntPoint; 65 class IntPoint;
66 class IntSize; 66 class IntSize;
67 class LayoutView; 67 class LayoutView;
68 class LayoutViewItem; 68 class LayoutViewItem;
69 class LocalDOMWindow; 69 class LocalDOMWindow;
70 class NavigationScheduler; 70 class NavigationScheduler;
71 class Node; 71 class Node;
72 class NodeTraversal; 72 class NodeTraversal;
73 class Performance;
74 class PerformanceMonitor; 73 class PerformanceMonitor;
75 template <typename Strategy> 74 template <typename Strategy>
76 class PositionWithAffinityTemplate; 75 class PositionWithAffinityTemplate;
77 class PluginData; 76 class PluginData;
78 class Range;
79 class ScriptController; 77 class ScriptController;
80 class SpellChecker; 78 class SpellChecker;
81 class WebFrameScheduler; 79 class WebFrameScheduler;
82 80
83 extern template class CORE_EXTERN_TEMPLATE_EXPORT Supplement<LocalFrame>; 81 extern template class CORE_EXTERN_TEMPLATE_EXPORT Supplement<LocalFrame>;
84 82
85 class CORE_EXPORT LocalFrame final : public Frame, 83 class CORE_EXPORT LocalFrame final : public Frame,
86 public Supplementable<LocalFrame> { 84 public Supplementable<LocalFrame> {
87 USING_GARBAGE_COLLECTED_MIXIN(LocalFrame); 85 USING_GARBAGE_COLLECTED_MIXIN(LocalFrame);
88 86
(...skipping 288 matching lines...) Expand 10 before | Expand all | Expand 10 after
377 explicit ScopedFrameBlamer(LocalFrame*); 375 explicit ScopedFrameBlamer(LocalFrame*);
378 ~ScopedFrameBlamer(); 376 ~ScopedFrameBlamer();
379 377
380 private: 378 private:
381 Member<LocalFrame> m_frame; 379 Member<LocalFrame> m_frame;
382 }; 380 };
383 381
384 } // namespace blink 382 } // namespace blink
385 383
386 #endif // LocalFrame_h 384 #endif // LocalFrame_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/frame/LocalDOMWindow.h ('k') | third_party/WebKit/Source/core/html/HTMLTextAreaElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698