| 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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 class InputMethodController; | 62 class InputMethodController; |
| 63 class IntPoint; | 63 class IntPoint; |
| 64 class IntSize; | 64 class IntSize; |
| 65 class LayoutViewItem; | 65 class LayoutViewItem; |
| 66 class LocalDOMWindow; | 66 class LocalDOMWindow; |
| 67 class NavigationScheduler; | 67 class NavigationScheduler; |
| 68 class Node; | 68 class Node; |
| 69 class NodeTraversal; | 69 class NodeTraversal; |
| 70 class Range; | 70 class Range; |
| 71 class LayoutView; | 71 class LayoutView; |
| 72 class TreeScope; | |
| 73 class ScriptController; | 72 class ScriptController; |
| 74 class ServiceRegistry; | 73 class ServiceRegistry; |
| 75 class SpellChecker; | 74 class SpellChecker; |
| 76 class TreeScope; | |
| 77 class WebFrameHostScheduler; | 75 class WebFrameHostScheduler; |
| 78 class WebFrameScheduler; | 76 class WebFrameScheduler; |
| 79 template <typename Strategy> class PositionWithAffinityTemplate; | 77 template <typename Strategy> class PositionWithAffinityTemplate; |
| 80 | 78 |
| 81 class CORE_EXPORT LocalFrame : public Frame, public LocalFrameLifecycleNotifier,
public Supplementable<LocalFrame>, public DisplayItemClient { | 79 class CORE_EXPORT LocalFrame : public Frame, public LocalFrameLifecycleNotifier,
public Supplementable<LocalFrame>, public DisplayItemClient { |
| 82 USING_GARBAGE_COLLECTED_MIXIN(LocalFrame); | 80 USING_GARBAGE_COLLECTED_MIXIN(LocalFrame); |
| 83 public: | 81 public: |
| 84 static LocalFrame* create(FrameLoaderClient*, FrameHost*, FrameOwner*, Servi
ceRegistry* = nullptr); | 82 static LocalFrame* create(FrameLoaderClient*, FrameHost*, FrameOwner*, Servi
ceRegistry* = nullptr); |
| 85 | 83 |
| 86 void init(); | 84 void init(); |
| (...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 311 explicit FrameNavigationDisabler(LocalFrame&); | 309 explicit FrameNavigationDisabler(LocalFrame&); |
| 312 ~FrameNavigationDisabler(); | 310 ~FrameNavigationDisabler(); |
| 313 | 311 |
| 314 private: | 312 private: |
| 315 Member<LocalFrame> m_frame; | 313 Member<LocalFrame> m_frame; |
| 316 }; | 314 }; |
| 317 | 315 |
| 318 } // namespace blink | 316 } // namespace blink |
| 319 | 317 |
| 320 #endif // LocalFrame_h | 318 #endif // LocalFrame_h |
| OLD | NEW |