| 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 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 RenderView* contentRenderer() const; // Root of the render tree for the
document contained in this frame. | 85 RenderView* contentRenderer() const; // Root of the render tree for the
document contained in this frame. |
| 86 | 86 |
| 87 Editor& editor() const; | 87 Editor& editor() const; |
| 88 EventHandler& eventHandler() const; | 88 EventHandler& eventHandler() const; |
| 89 NewEventHandler& newEventHandler() const; | 89 NewEventHandler& newEventHandler() const; |
| 90 FrameSelection& selection() const; | 90 FrameSelection& selection() const; |
| 91 InputMethodController& inputMethodController() const; | 91 InputMethodController& inputMethodController() const; |
| 92 SpellChecker& spellChecker() const; | 92 SpellChecker& spellChecker() const; |
| 93 FrameConsole& console() const; | 93 FrameConsole& console() const; |
| 94 | 94 |
| 95 void didChangeVisibilityState(); | |
| 96 | |
| 97 FrameLoaderClient* loaderClient() const; | 95 FrameLoaderClient* loaderClient() const; |
| 98 | 96 |
| 99 // ======== All public functions below this point are candidates to move out
of LocalFrame into another class. ======== | 97 // ======== All public functions below this point are candidates to move out
of LocalFrame into another class. ======== |
| 100 | 98 |
| 101 FloatSize resizePageRectsKeepingRatio(const FloatSize& originalSize, con
st FloatSize& expectedSize); | 99 FloatSize resizePageRectsKeepingRatio(const FloatSize& originalSize, con
st FloatSize& expectedSize); |
| 102 | 100 |
| 103 void deviceOrPageScaleFactorChanged(); | 101 void deviceOrPageScaleFactorChanged(); |
| 104 double devicePixelRatio() const; | 102 double devicePixelRatio() const; |
| 105 | 103 |
| 106 String selectedText() const; | 104 String selectedText() const; |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 177 DEFINE_TYPE_CASTS(LocalFrame, Frame, localFrame, true, true); | 175 DEFINE_TYPE_CASTS(LocalFrame, Frame, localFrame, true, true); |
| 178 | 176 |
| 179 } // namespace blink | 177 } // namespace blink |
| 180 | 178 |
| 181 // During refactoring, there are some places where we need to do type conversion
s that | 179 // During refactoring, there are some places where we need to do type conversion
s that |
| 182 // will not be needed once all instances of LocalFrame and RemoteFrame are sorte
d out. | 180 // will not be needed once all instances of LocalFrame and RemoteFrame are sorte
d out. |
| 183 // At that time this #define will be removed and all the uses of it will need to
be corrected. | 181 // At that time this #define will be removed and all the uses of it will need to
be corrected. |
| 184 #define toLocalFrameTemporary toLocalFrame | 182 #define toLocalFrameTemporary toLocalFrame |
| 185 | 183 |
| 186 #endif // SKY_ENGINE_CORE_FRAME_LOCALFRAME_H_ | 184 #endif // SKY_ENGINE_CORE_FRAME_LOCALFRAME_H_ |
| OLD | NEW |