| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org) |
| 3 * (C) 2000 Antti Koivisto (koivisto@kde.org) | 3 * (C) 2000 Antti Koivisto (koivisto@kde.org) |
| 4 * (C) 2000 Dirk Mueller (mueller@kde.org) | 4 * (C) 2000 Dirk Mueller (mueller@kde.org) |
| 5 * (C) 2004 Allan Sandfeld Jensen (kde@carewolf.com) | 5 * (C) 2004 Allan Sandfeld Jensen (kde@carewolf.com) |
| 6 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2012 Apple Inc. All r
ights reserved. | 6 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2012 Apple Inc. All r
ights reserved. |
| 7 * Copyright (C) 2009 Google Inc. All rights reserved. | 7 * Copyright (C) 2009 Google Inc. All rights reserved. |
| 8 * | 8 * |
| 9 * This library is free software; you can redistribute it and/or | 9 * This library is free software; you can redistribute it and/or |
| 10 * modify it under the terms of the GNU Library General Public | 10 * modify it under the terms of the GNU Library General Public |
| (...skipping 954 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 965 virtual int caretMinOffset() const; | 965 virtual int caretMinOffset() const; |
| 966 virtual int caretMaxOffset() const; | 966 virtual int caretMaxOffset() const; |
| 967 | 967 |
| 968 virtual int previousOffset(int current) const; | 968 virtual int previousOffset(int current) const; |
| 969 virtual int previousOffsetForBackwardDeletion(int current) const; | 969 virtual int previousOffsetForBackwardDeletion(int current) const; |
| 970 virtual int nextOffset(int current) const; | 970 virtual int nextOffset(int current) const; |
| 971 | 971 |
| 972 virtual void imageChanged(ImageResource*, const IntRect* = 0) override final
; | 972 virtual void imageChanged(ImageResource*, const IntRect* = 0) override final
; |
| 973 virtual void imageChanged(WrappedImagePtr, const IntRect* = 0) { } | 973 virtual void imageChanged(WrappedImagePtr, const IntRect* = 0) { } |
| 974 virtual bool willRenderImage(ImageResource*) override final; | 974 virtual bool willRenderImage(ImageResource*) override final; |
| 975 virtual bool getImageAnimationPolicy(ImageResource*, ImageAnimationPolicy&)
override final; |
| 975 | 976 |
| 976 void selectionStartEnd(int& spos, int& epos) const; | 977 void selectionStartEnd(int& spos, int& epos) const; |
| 977 | 978 |
| 978 void remove() | 979 void remove() |
| 979 { | 980 { |
| 980 if (parent()) | 981 if (parent()) |
| 981 parent()->removeChild(this); | 982 parent()->removeChild(this); |
| 982 } | 983 } |
| 983 | 984 |
| 984 bool isInert() const; | 985 bool isInert() const; |
| (...skipping 676 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1661 void showTree(const blink::LayoutObject*); | 1662 void showTree(const blink::LayoutObject*); |
| 1662 void showLineTree(const blink::LayoutObject*); | 1663 void showLineTree(const blink::LayoutObject*); |
| 1663 void showLayoutTree(const blink::LayoutObject* object1); | 1664 void showLayoutTree(const blink::LayoutObject* object1); |
| 1664 // We don't make object2 an optional parameter so that showLayoutTree | 1665 // We don't make object2 an optional parameter so that showLayoutTree |
| 1665 // can be called from gdb easily. | 1666 // can be called from gdb easily. |
| 1666 void showLayoutTree(const blink::LayoutObject* object1, const blink::LayoutObjec
t* object2); | 1667 void showLayoutTree(const blink::LayoutObject* object1, const blink::LayoutObjec
t* object2); |
| 1667 | 1668 |
| 1668 #endif | 1669 #endif |
| 1669 | 1670 |
| 1670 #endif // LayoutObject_h | 1671 #endif // LayoutObject_h |
| OLD | NEW |