| 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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 ScriptController& script(); | 96 ScriptController& script(); |
| 97 SpellChecker& spellChecker() const; | 97 SpellChecker& spellChecker() const; |
| 98 FrameConsole& console() const; | 98 FrameConsole& console() const; |
| 99 | 99 |
| 100 void didChangeVisibilityState(); | 100 void didChangeVisibilityState(); |
| 101 | 101 |
| 102 FrameLoaderClient* loaderClient() const; | 102 FrameLoaderClient* loaderClient() const; |
| 103 | 103 |
| 104 // ======== All public functions below this point are candidates to move out
of LocalFrame into another class. ======== | 104 // ======== All public functions below this point are candidates to move out
of LocalFrame into another class. ======== |
| 105 | 105 |
| 106 void countObjectsNeedingLayout(unsigned& needsLayoutObjects, unsigned& t
otalObjects, bool& isPartial); | |
| 107 | |
| 108 FloatSize resizePageRectsKeepingRatio(const FloatSize& originalSize, con
st FloatSize& expectedSize); | 106 FloatSize resizePageRectsKeepingRatio(const FloatSize& originalSize, con
st FloatSize& expectedSize); |
| 109 | 107 |
| 110 void deviceOrPageScaleFactorChanged(); | 108 void deviceOrPageScaleFactorChanged(); |
| 111 double devicePixelRatio() const; | 109 double devicePixelRatio() const; |
| 112 | 110 |
| 113 String selectedText() const; | 111 String selectedText() const; |
| 114 | 112 |
| 115 VisiblePosition visiblePositionForPoint(const IntPoint& framePoint); | 113 VisiblePosition visiblePositionForPoint(const IntPoint& framePoint); |
| 116 Document* documentAtPoint(const IntPoint& windowPoint); | 114 Document* documentAtPoint(const IntPoint& windowPoint); |
| 117 PassRefPtr<Range> rangeForPoint(const IntPoint& framePoint); | 115 PassRefPtr<Range> rangeForPoint(const IntPoint& framePoint); |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 182 DEFINE_TYPE_CASTS(LocalFrame, Frame, localFrame, true, true); | 180 DEFINE_TYPE_CASTS(LocalFrame, Frame, localFrame, true, true); |
| 183 | 181 |
| 184 } // namespace blink | 182 } // namespace blink |
| 185 | 183 |
| 186 // During refactoring, there are some places where we need to do type conversion
s that | 184 // During refactoring, there are some places where we need to do type conversion
s that |
| 187 // will not be needed once all instances of LocalFrame and RemoteFrame are sorte
d out. | 185 // will not be needed once all instances of LocalFrame and RemoteFrame are sorte
d out. |
| 188 // At that time this #define will be removed and all the uses of it will need to
be corrected. | 186 // At that time this #define will be removed and all the uses of it will need to
be corrected. |
| 189 #define toLocalFrameTemporary toLocalFrame | 187 #define toLocalFrameTemporary toLocalFrame |
| 190 | 188 |
| 191 #endif // SKY_ENGINE_CORE_FRAME_LOCALFRAME_H_ | 189 #endif // SKY_ENGINE_CORE_FRAME_LOCALFRAME_H_ |
| OLD | NEW |