Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(253)

Side by Side Diff: Source/core/layout/LayoutObject.h

Issue 1144143003: Remove unused LayoutObject::getImageAnimationPolicy (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | Source/core/layout/LayoutObject.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 955 matching lines...) Expand 10 before | Expand all | Expand 10 after
966 virtual int caretMinOffset() const; 966 virtual int caretMinOffset() const;
967 virtual int caretMaxOffset() const; 967 virtual int caretMaxOffset() const;
968 968
969 virtual int previousOffset(int current) const; 969 virtual int previousOffset(int current) const;
970 virtual int previousOffsetForBackwardDeletion(int current) const; 970 virtual int previousOffsetForBackwardDeletion(int current) const;
971 virtual int nextOffset(int current) const; 971 virtual int nextOffset(int current) const;
972 972
973 virtual void imageChanged(ImageResource*, const IntRect* = 0) override final ; 973 virtual void imageChanged(ImageResource*, const IntRect* = 0) override final ;
974 virtual void imageChanged(WrappedImagePtr, const IntRect* = 0) { } 974 virtual void imageChanged(WrappedImagePtr, const IntRect* = 0) { }
975 virtual bool willRenderImage(ImageResource*) override final; 975 virtual bool willRenderImage(ImageResource*) override final;
976 virtual bool getImageAnimationPolicy(ImageResource*, ImageAnimationPolicy&) override final;
977 976
978 void selectionStartEnd(int& spos, int& epos) const; 977 void selectionStartEnd(int& spos, int& epos) const;
979 978
980 void remove() 979 void remove()
981 { 980 {
982 if (parent()) 981 if (parent())
983 parent()->removeChild(this); 982 parent()->removeChild(this);
984 } 983 }
985 984
986 bool isInert() const; 985 bool isInert() const;
(...skipping 676 matching lines...) Expand 10 before | Expand all | Expand 10 after
1663 void showTree(const blink::LayoutObject*); 1662 void showTree(const blink::LayoutObject*);
1664 void showLineTree(const blink::LayoutObject*); 1663 void showLineTree(const blink::LayoutObject*);
1665 void showLayoutTree(const blink::LayoutObject* object1); 1664 void showLayoutTree(const blink::LayoutObject* object1);
1666 // We don't make object2 an optional parameter so that showLayoutTree 1665 // We don't make object2 an optional parameter so that showLayoutTree
1667 // can be called from gdb easily. 1666 // can be called from gdb easily.
1668 void showLayoutTree(const blink::LayoutObject* object1, const blink::LayoutObjec t* object2); 1667 void showLayoutTree(const blink::LayoutObject* object1, const blink::LayoutObjec t* object2);
1669 1668
1670 #endif 1669 #endif
1671 1670
1672 #endif // LayoutObject_h 1671 #endif // LayoutObject_h
OLDNEW
« no previous file with comments | « no previous file | Source/core/layout/LayoutObject.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698