| 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 25 matching lines...) Expand all Loading... |
| 36 class WebLayer; | 36 class WebLayer; |
| 37 } | 37 } |
| 38 | 38 |
| 39 namespace blink { | 39 namespace blink { |
| 40 | 40 |
| 41 class ChromeClient; | 41 class ChromeClient; |
| 42 class FrameClient; | 42 class FrameClient; |
| 43 class FrameHost; | 43 class FrameHost; |
| 44 class LocalDOMWindow; | 44 class LocalDOMWindow; |
| 45 class Page; | 45 class Page; |
| 46 class RenderPart; | |
| 47 class Settings; | 46 class Settings; |
| 48 | 47 |
| 49 class Frame : public RefCounted<Frame> { | 48 class Frame : public RefCounted<Frame> { |
| 50 public: | 49 public: |
| 51 virtual ~Frame(); | 50 virtual ~Frame(); |
| 52 | 51 |
| 53 virtual void detach() = 0; | 52 virtual void detach() = 0; |
| 54 void detachChildren(); | 53 void detachChildren(); |
| 55 | 54 |
| 56 FrameClient* client() const; | 55 FrameClient* client() const; |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 { | 95 { |
| 97 return m_domWindow.get(); | 96 return m_domWindow.get(); |
| 98 } | 97 } |
| 99 | 98 |
| 100 // Allow equality comparisons of Frames by reference or pointer, interchangeably
. | 99 // Allow equality comparisons of Frames by reference or pointer, interchangeably
. |
| 101 DEFINE_COMPARISON_OPERATORS_WITH_REFERENCES_REFCOUNTED(Frame) | 100 DEFINE_COMPARISON_OPERATORS_WITH_REFERENCES_REFCOUNTED(Frame) |
| 102 | 101 |
| 103 } // namespace blink | 102 } // namespace blink |
| 104 | 103 |
| 105 #endif // Frame_h | 104 #endif // Frame_h |
| OLD | NEW |