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 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
155 void deviceScaleFactorChanged(); | 155 void deviceScaleFactorChanged(); |
156 double devicePixelRatio() const; | 156 double devicePixelRatio() const; |
157 | 157 |
158 PassOwnPtr<DragImage> nodeImage(Node&); | 158 PassOwnPtr<DragImage> nodeImage(Node&); |
159 PassOwnPtr<DragImage> dragImageForSelection(float opacity); | 159 PassOwnPtr<DragImage> dragImageForSelection(float opacity); |
160 | 160 |
161 String selectedText() const; | 161 String selectedText() const; |
162 String selectedTextForClipboard() const; | 162 String selectedTextForClipboard() const; |
163 | 163 |
164 PositionWithAffinityTemplate<EditingAlgorithm<NodeTraversal>> positionForPoi
nt(const IntPoint& framePoint); | 164 PositionWithAffinityTemplate<EditingAlgorithm<NodeTraversal>> positionForPoi
nt(const IntPoint& framePoint); |
165 Document* documentAtPoint(const IntPoint& windowPoint); | 165 Document* documentAtPoint(const IntPoint&); |
166 EphemeralRangeTemplate<EditingAlgorithm<NodeTraversal>> rangeForPoint(const
IntPoint& framePoint); | 166 EphemeralRangeTemplate<EditingAlgorithm<NodeTraversal>> rangeForPoint(const
IntPoint& framePoint); |
167 | 167 |
168 bool isURLAllowed(const KURL&) const; | 168 bool isURLAllowed(const KURL&) const; |
169 bool shouldReuseDefaultView(const KURL&) const; | 169 bool shouldReuseDefaultView(const KURL&) const; |
170 void removeSpellingMarkersUnderWords(const Vector<String>& words); | 170 void removeSpellingMarkersUnderWords(const Vector<String>& words); |
171 | 171 |
172 // FIXME: once scroll customization is enabled everywhere | 172 // FIXME: once scroll customization is enabled everywhere |
173 // (crbug.com/416862), this should take a ScrollState object. | 173 // (crbug.com/416862), this should take a ScrollState object. |
174 ScrollResult applyScrollDelta(const FloatSize& delta, bool isScrollBegin); | 174 ScrollResult applyScrollDelta(const FloatSize& delta, bool isScrollBegin); |
175 bool shouldScrollTopControls(const FloatSize& delta) const; | 175 bool shouldScrollTopControls(const FloatSize& delta) const; |
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
341 explicit FrameNavigationDisabler(LocalFrame&); | 341 explicit FrameNavigationDisabler(LocalFrame&); |
342 ~FrameNavigationDisabler(); | 342 ~FrameNavigationDisabler(); |
343 | 343 |
344 private: | 344 private: |
345 RawPtrWillBeMember<LocalFrame> m_frame; | 345 RawPtrWillBeMember<LocalFrame> m_frame; |
346 }; | 346 }; |
347 | 347 |
348 } // namespace blink | 348 } // namespace blink |
349 | 349 |
350 #endif // LocalFrame_h | 350 #endif // LocalFrame_h |
OLD | NEW |