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 | 8 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights |
9 * reserved. | 9 * reserved. |
10 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) | 10 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) |
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
92 static LocalFrame* create(LocalFrameClient*, | 92 static LocalFrame* create(LocalFrameClient*, |
93 Page&, | 93 Page&, |
94 FrameOwner*, | 94 FrameOwner*, |
95 InterfaceProvider* = nullptr, | 95 InterfaceProvider* = nullptr, |
96 InterfaceRegistry* = nullptr); | 96 InterfaceRegistry* = nullptr); |
97 | 97 |
98 void init(); | 98 void init(); |
99 void setView(FrameView*); | 99 void setView(FrameView*); |
100 void createView(const IntSize&, | 100 void createView(const IntSize&, |
101 const Color&, | 101 const Color&, |
102 bool, | |
103 ScrollbarMode = ScrollbarAuto, | 102 ScrollbarMode = ScrollbarAuto, |
104 bool horizontalLock = false, | 103 bool horizontalLock = false, |
105 ScrollbarMode = ScrollbarAuto, | 104 ScrollbarMode = ScrollbarAuto, |
106 bool verticalLock = false); | 105 bool verticalLock = false); |
107 | 106 |
108 // Frame overrides: | 107 // Frame overrides: |
109 ~LocalFrame() override; | 108 ~LocalFrame() override; |
110 DECLARE_VIRTUAL_TRACE(); | 109 DECLARE_VIRTUAL_TRACE(); |
111 void navigate(Document& originDocument, | 110 void navigate(Document& originDocument, |
112 const KURL&, | 111 const KURL&, |
(...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
371 explicit ScopedFrameBlamer(LocalFrame*); | 370 explicit ScopedFrameBlamer(LocalFrame*); |
372 ~ScopedFrameBlamer(); | 371 ~ScopedFrameBlamer(); |
373 | 372 |
374 private: | 373 private: |
375 Member<LocalFrame> m_frame; | 374 Member<LocalFrame> m_frame; |
376 }; | 375 }; |
377 | 376 |
378 } // namespace blink | 377 } // namespace blink |
379 | 378 |
380 #endif // LocalFrame_h | 379 #endif // LocalFrame_h |
OLD | NEW |