| 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 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 154 VisiblePosition visiblePositionForPoint(const IntPoint& framePoint); | 154 VisiblePosition visiblePositionForPoint(const IntPoint& framePoint); |
| 155 Document* documentAtPoint(const IntPoint& windowPoint); | 155 Document* documentAtPoint(const IntPoint& windowPoint); |
| 156 PassRefPtrWillBeRawPtr<Range> rangeForPoint(const IntPoint& framePoint); | 156 PassRefPtrWillBeRawPtr<Range> rangeForPoint(const IntPoint& framePoint); |
| 157 | 157 |
| 158 bool isURLAllowed(const KURL&) const; | 158 bool isURLAllowed(const KURL&) const; |
| 159 bool shouldReuseDefaultView(const KURL&) const; | 159 bool shouldReuseDefaultView(const KURL&) const; |
| 160 void removeSpellingMarkersUnderWords(const Vector<String>& words); | 160 void removeSpellingMarkersUnderWords(const Vector<String>& words); |
| 161 | 161 |
| 162 // FIXME: once scroll customization is enabled everywhere | 162 // FIXME: once scroll customization is enabled everywhere |
| 163 // (crbug.com/416862), this should take a ScrollState object. | 163 // (crbug.com/416862), this should take a ScrollState object. |
| 164 bool applyScrollDelta(const FloatSize& delta, bool isScrollBegin); | 164 ScrollResult applyScrollDelta(const FloatSize& delta, bool isScrollBegin
); |
| 165 bool shouldScrollTopControls(const FloatSize& delta) const; | 165 bool shouldScrollTopControls(const FloatSize& delta) const; |
| 166 | 166 |
| 167 #if ENABLE(OILPAN) | 167 #if ENABLE(OILPAN) |
| 168 void registerPluginElement(HTMLPlugInElement*); | 168 void registerPluginElement(HTMLPlugInElement*); |
| 169 void unregisterPluginElement(HTMLPlugInElement*); | 169 void unregisterPluginElement(HTMLPlugInElement*); |
| 170 void clearWeakMembers(Visitor*); | 170 void clearWeakMembers(Visitor*); |
| 171 #endif | 171 #endif |
| 172 DisplayItemClient displayItemClient() const { return toDisplayItemClient
(this); } | 172 DisplayItemClient displayItemClient() const { return toDisplayItemClient
(this); } |
| 173 String debugName() const { return "LocalFrame"; } | 173 String debugName() const { return "LocalFrame"; } |
| 174 | 174 |
| (...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 301 DEFINE_TYPE_CASTS(LocalFrame, Frame, localFrame, localFrame->isLocalFrame(),
localFrame.isLocalFrame()); | 301 DEFINE_TYPE_CASTS(LocalFrame, Frame, localFrame, localFrame->isLocalFrame(),
localFrame.isLocalFrame()); |
| 302 | 302 |
| 303 } // namespace blink | 303 } // namespace blink |
| 304 | 304 |
| 305 // During refactoring, there are some places where we need to do type conversion
s that | 305 // During refactoring, there are some places where we need to do type conversion
s that |
| 306 // will not be needed once all instances of LocalFrame and RemoteFrame are sorte
d out. | 306 // will not be needed once all instances of LocalFrame and RemoteFrame are sorte
d out. |
| 307 // At that time this #define will be removed and all the uses of it will need to
be corrected. | 307 // At that time this #define will be removed and all the uses of it will need to
be corrected. |
| 308 #define toLocalFrameTemporary toLocalFrame | 308 #define toLocalFrameTemporary toLocalFrame |
| 309 | 309 |
| 310 #endif // LocalFrame_h | 310 #endif // LocalFrame_h |
| OLD | NEW |