| 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 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 173 bool shouldScrollTopControls(const FloatSize& delta) const; | 173 bool shouldScrollTopControls(const FloatSize& delta) const; |
| 174 | 174 |
| 175 #if ENABLE(OILPAN) | 175 #if ENABLE(OILPAN) |
| 176 void registerPluginElement(HTMLPlugInElement*); | 176 void registerPluginElement(HTMLPlugInElement*); |
| 177 void unregisterPluginElement(HTMLPlugInElement*); | 177 void unregisterPluginElement(HTMLPlugInElement*); |
| 178 void clearWeakMembers(Visitor*); | 178 void clearWeakMembers(Visitor*); |
| 179 #endif | 179 #endif |
| 180 DisplayItemClient displayItemClient() const { return toDisplayItemClient(thi
s); } | 180 DisplayItemClient displayItemClient() const { return toDisplayItemClient(thi
s); } |
| 181 String debugName() const { return "LocalFrame"; } | 181 String debugName() const { return "LocalFrame"; } |
| 182 | 182 |
| 183 bool shouldThrottleRenderingPipeline() const; |
| 184 bool shouldThrottleStyleLayoutAndCompositingUpdates() const; |
| 185 |
| 183 // ======== | 186 // ======== |
| 184 | 187 |
| 185 private: | 188 private: |
| 186 LocalFrame(FrameLoaderClient*, FrameHost*, FrameOwner*); | 189 LocalFrame(FrameLoaderClient*, FrameHost*, FrameOwner*); |
| 187 | 190 |
| 188 // Internal Frame helper overrides: | 191 // Internal Frame helper overrides: |
| 189 WindowProxyManager* windowProxyManager() const override; | 192 WindowProxyManager* windowProxyManager() const override; |
| 190 | 193 |
| 191 String localLayerTreeAsText(unsigned flags) const; | 194 String localLayerTreeAsText(unsigned flags) const; |
| 192 | 195 |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 314 DECLARE_WEAK_IDENTIFIER_MAP(LocalFrame); | 317 DECLARE_WEAK_IDENTIFIER_MAP(LocalFrame); |
| 315 | 318 |
| 316 } // namespace blink | 319 } // namespace blink |
| 317 | 320 |
| 318 // During refactoring, there are some places where we need to do type conversion
s that | 321 // During refactoring, there are some places where we need to do type conversion
s that |
| 319 // will not be needed once all instances of LocalFrame and RemoteFrame are sorte
d out. | 322 // will not be needed once all instances of LocalFrame and RemoteFrame are sorte
d out. |
| 320 // At that time this #define will be removed and all the uses of it will need to
be corrected. | 323 // At that time this #define will be removed and all the uses of it will need to
be corrected. |
| 321 #define toLocalFrameTemporary toLocalFrame | 324 #define toLocalFrameTemporary toLocalFrame |
| 322 | 325 |
| 323 #endif // LocalFrame_h | 326 #endif // LocalFrame_h |
| OLD | NEW |