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 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
103 FrameSelection* selection() const; | 103 FrameSelection* selection() const; |
104 FrameTree* tree() const; | 104 FrameTree* tree() const; |
105 AnimationController* animation() const; | 105 AnimationController* animation() const; |
106 ScriptController* script(); | 106 ScriptController* script(); |
107 | 107 |
108 RenderView* contentRenderer() const; // Root of the render tree for the
document contained in this frame. | 108 RenderView* contentRenderer() const; // Root of the render tree for the
document contained in this frame. |
109 RenderPart* ownerRenderer() const; // Renderer for the element that cont
ains this frame. | 109 RenderPart* ownerRenderer() const; // Renderer for the element that cont
ains this frame. |
110 | 110 |
111 void dispatchVisibilityStateChangeEvent(); | 111 void dispatchVisibilityStateChangeEvent(); |
112 | 112 |
113 void reportMemoryUsage(MemoryObjectInfo*) const; | |
114 | |
115 // ======== All public functions below this point are candidates to move out
of Frame into another class. ======== | 113 // ======== All public functions below this point are candidates to move out
of Frame into another class. ======== |
116 | 114 |
117 bool inScope(TreeScope*) const; | 115 bool inScope(TreeScope*) const; |
118 | 116 |
119 String layerTreeAsText(LayerTreeFlags = 0) const; | 117 String layerTreeAsText(LayerTreeFlags = 0) const; |
120 String trackedRepaintRectsAsText() const; | 118 String trackedRepaintRectsAsText() const; |
121 | 119 |
122 static Frame* frameForWidget(const Widget*); | 120 static Frame* frameForWidget(const Widget*); |
123 | 121 |
124 Settings* settings() const; // can be NULL | 122 Settings* settings() const; // can be NULL |
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
275 } | 273 } |
276 | 274 |
277 inline EventHandler* Frame::eventHandler() const | 275 inline EventHandler* Frame::eventHandler() const |
278 { | 276 { |
279 return m_eventHandler.get(); | 277 return m_eventHandler.get(); |
280 } | 278 } |
281 | 279 |
282 } // namespace WebCore | 280 } // namespace WebCore |
283 | 281 |
284 #endif // Frame_h | 282 #endif // Frame_h |
OLD | NEW |