| 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 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 187 | 187 |
| 188 void updateSecurityOrigin(SecurityOrigin*); | 188 void updateSecurityOrigin(SecurityOrigin*); |
| 189 | 189 |
| 190 bool isNavigationAllowed() const { return m_navigationDisableCount == 0; } | 190 bool isNavigationAllowed() const { return m_navigationDisableCount == 0; } |
| 191 | 191 |
| 192 private: | 192 private: |
| 193 friend class FrameNavigationDisabler; | 193 friend class FrameNavigationDisabler; |
| 194 | 194 |
| 195 LocalFrame(FrameLoaderClient*, FrameHost*, FrameOwner*); | 195 LocalFrame(FrameLoaderClient*, FrameHost*, FrameOwner*); |
| 196 | 196 |
| 197 DISPLAY_ITEM_CACHE_STATUS_UNCACHEABLE_IMPLEMENTATION |
| 198 |
| 197 // Internal Frame helper overrides: | 199 // Internal Frame helper overrides: |
| 198 WindowProxyManager* windowProxyManager() const override; | 200 WindowProxyManager* windowProxyManager() const override; |
| 199 | 201 |
| 200 String localLayerTreeAsText(unsigned flags) const; | 202 String localLayerTreeAsText(unsigned flags) const; |
| 201 | 203 |
| 202 // Paints the area for the given rect into a DragImage, with the given displ
ayItemClient id attached. | 204 // Paints the area for the given rect into a DragImage, with the given displ
ayItemClient id attached. |
| 203 // The rect is in the coordinate space of the frame. | 205 // The rect is in the coordinate space of the frame. |
| 204 PassOwnPtr<DragImage> paintIntoDragImage(const DisplayItemClient&, | 206 PassOwnPtr<DragImage> paintIntoDragImage(const DisplayItemClient&, |
| 205 RespectImageOrientationEnum shouldRespectImageOrientation, const GlobalP
aintFlags, | 207 RespectImageOrientationEnum shouldRespectImageOrientation, const GlobalP
aintFlags, |
| 206 IntRect paintingRect, float opacity = 1); | 208 IntRect paintingRect, float opacity = 1); |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 322 explicit FrameNavigationDisabler(LocalFrame&); | 324 explicit FrameNavigationDisabler(LocalFrame&); |
| 323 ~FrameNavigationDisabler(); | 325 ~FrameNavigationDisabler(); |
| 324 | 326 |
| 325 private: | 327 private: |
| 326 RawPtrWillBeMember<LocalFrame> m_frame; | 328 RawPtrWillBeMember<LocalFrame> m_frame; |
| 327 }; | 329 }; |
| 328 | 330 |
| 329 } // namespace blink | 331 } // namespace blink |
| 330 | 332 |
| 331 #endif // LocalFrame_h | 333 #endif // LocalFrame_h |
| OLD | NEW |