OLD | NEW |
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
reserved. | 8 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights
reserved. |
9 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) | 9 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) |
10 * Copyright (C) 2008 Eric Seidel <eric@webkit.org> | 10 * Copyright (C) 2008 Eric Seidel <eric@webkit.org> |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 class EventHandler; | 54 class EventHandler; |
55 class FloatSize; | 55 class FloatSize; |
56 class FrameConsole; | 56 class FrameConsole; |
57 class FrameSelection; | 57 class FrameSelection; |
58 class FrameView; | 58 class FrameView; |
59 class HTMLPlugInElement; | 59 class HTMLPlugInElement; |
60 class InputMethodController; | 60 class InputMethodController; |
61 class IntPoint; | 61 class IntPoint; |
62 class IntSize; | 62 class IntSize; |
63 class InstrumentingAgents; | 63 class InstrumentingAgents; |
| 64 class LayoutView; |
64 class LayoutViewItem; | 65 class LayoutViewItem; |
65 class LocalDOMWindow; | 66 class LocalDOMWindow; |
66 class NavigationScheduler; | 67 class NavigationScheduler; |
67 class Node; | 68 class Node; |
68 class NodeTraversal; | 69 class NodeTraversal; |
| 70 template <typename Strategy> class PositionWithAffinityTemplate; |
69 class PluginData; | 71 class PluginData; |
70 class Range; | 72 class Range; |
71 class LayoutView; | |
72 class ScriptController; | 73 class ScriptController; |
73 class ServiceRegistry; | 74 class ServiceRegistry; |
74 class SpellChecker; | 75 class SpellChecker; |
75 class WebFrameHostScheduler; | 76 class WebFrameHostScheduler; |
76 class WebFrameScheduler; | 77 class WebFrameScheduler; |
77 template <typename Strategy> class PositionWithAffinityTemplate; | |
78 | 78 |
79 class CORE_EXPORT LocalFrame : public Frame, public LocalFrameLifecycleNotifier,
public Supplementable<LocalFrame> { | 79 class CORE_EXPORT LocalFrame : public Frame, public LocalFrameLifecycleNotifier,
public Supplementable<LocalFrame> { |
80 USING_GARBAGE_COLLECTED_MIXIN(LocalFrame); | 80 USING_GARBAGE_COLLECTED_MIXIN(LocalFrame); |
81 public: | 81 public: |
82 static LocalFrame* create(FrameLoaderClient*, FrameHost*, FrameOwner*, Servi
ceRegistry* = nullptr); | 82 static LocalFrame* create(FrameLoaderClient*, FrameHost*, FrameOwner*, Servi
ceRegistry* = nullptr); |
83 | 83 |
84 void init(); | 84 void init(); |
85 void setView(FrameView*); | 85 void setView(FrameView*); |
86 void createView(const IntSize&, const Color&, bool, | 86 void createView(const IntSize&, const Color&, bool, |
87 ScrollbarMode = ScrollbarAuto, bool horizontalLock = false, | 87 ScrollbarMode = ScrollbarAuto, bool horizontalLock = false, |
(...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
310 explicit FrameNavigationDisabler(LocalFrame&); | 310 explicit FrameNavigationDisabler(LocalFrame&); |
311 ~FrameNavigationDisabler(); | 311 ~FrameNavigationDisabler(); |
312 | 312 |
313 private: | 313 private: |
314 Member<LocalFrame> m_frame; | 314 Member<LocalFrame> m_frame; |
315 }; | 315 }; |
316 | 316 |
317 } // namespace blink | 317 } // namespace blink |
318 | 318 |
319 #endif // LocalFrame_h | 319 #endif // LocalFrame_h |
OLD | NEW |