| 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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 // Frame overrides: | 90 // Frame overrides: |
| 91 ~LocalFrame() override; | 91 ~LocalFrame() override; |
| 92 DECLARE_VIRTUAL_TRACE(); | 92 DECLARE_VIRTUAL_TRACE(); |
| 93 bool isLocalFrame() const override { return true; } | 93 bool isLocalFrame() const override { return true; } |
| 94 DOMWindow* domWindow() const override; | 94 DOMWindow* domWindow() const override; |
| 95 WindowProxy* windowProxy(DOMWrapperWorld&) override; | 95 WindowProxy* windowProxy(DOMWrapperWorld&) override; |
| 96 void navigate(Document& originDocument, const KURL&, bool replaceCurrentItem
, UserGestureStatus) override; | 96 void navigate(Document& originDocument, const KURL&, bool replaceCurrentItem
, UserGestureStatus) override; |
| 97 void navigate(const FrameLoadRequest&) override; | 97 void navigate(const FrameLoadRequest&) override; |
| 98 void reload(FrameLoadType, ClientRedirectPolicy) override; | 98 void reload(FrameLoadType, ClientRedirectPolicy) override; |
| 99 void detach(FrameDetachType) override; | 99 void detach(FrameDetachType) override; |
| 100 void disconnectOwnerElement() override; | |
| 101 bool shouldClose() override; | 100 bool shouldClose() override; |
| 102 SecurityContext* securityContext() const override; | 101 SecurityContext* securityContext() const override; |
| 103 void printNavigationErrorMessage(const Frame&, const char* reason) override; | 102 void printNavigationErrorMessage(const Frame&, const char* reason) override; |
| 104 bool prepareForCommit() override; | 103 bool prepareForCommit() override; |
| 105 | 104 |
| 106 void willDetachFrameHost(); | 105 void willDetachFrameHost(); |
| 107 | 106 |
| 108 LocalDOMWindow* localDOMWindow() const; | 107 LocalDOMWindow* localDOMWindow() const; |
| 109 void setDOMWindow(PassRefPtrWillBeRawPtr<LocalDOMWindow>); | 108 void setDOMWindow(PassRefPtrWillBeRawPtr<LocalDOMWindow>); |
| 110 FrameView* view() const; | 109 FrameView* view() const; |
| (...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 313 explicit FrameNavigationDisabler(LocalFrame&); | 312 explicit FrameNavigationDisabler(LocalFrame&); |
| 314 ~FrameNavigationDisabler(); | 313 ~FrameNavigationDisabler(); |
| 315 | 314 |
| 316 private: | 315 private: |
| 317 RawPtrWillBeMember<LocalFrame> m_frame; | 316 RawPtrWillBeMember<LocalFrame> m_frame; |
| 318 }; | 317 }; |
| 319 | 318 |
| 320 } // namespace blink | 319 } // namespace blink |
| 321 | 320 |
| 322 #endif // LocalFrame_h | 321 #endif // LocalFrame_h |
| OLD | NEW |