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

Side by Side Diff: third_party/WebKit/WebCore/rendering/RenderContainer.h

Issue 10670: Do another merge using nifty new merge script (CL for that coming soon). (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 12 years, 1 month 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2001 Antti Koivisto (koivisto@kde.org) 2 * Copyright (C) 2001 Antti Koivisto (koivisto@kde.org)
3 * Copyright (C) 2003, 2004, 2005, 2006, 2007 Apple Inc. All rights reserved. 3 * Copyright (C) 2003, 2004, 2005, 2006, 2007 Apple Inc. All rights reserved.
4 * 4 *
5 * This library is free software; you can redistribute it and/or 5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public 6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either 7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version. 8 * version 2 of the License, or (at your option) any later version.
9 * 9 *
10 * This library is distributed in the hope that it will be useful, 10 * This library is distributed in the hope that it will be useful,
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 56
57 RenderObject* beforeAfterContainer(RenderStyle::PseudoId); 57 RenderObject* beforeAfterContainer(RenderStyle::PseudoId);
58 virtual void updateBeforeAfterContent(RenderStyle::PseudoId); 58 virtual void updateBeforeAfterContent(RenderStyle::PseudoId);
59 void updateBeforeAfterContentForContainer(RenderStyle::PseudoId, RenderConta iner*); 59 void updateBeforeAfterContentForContainer(RenderStyle::PseudoId, RenderConta iner*);
60 bool isAfterContent(RenderObject* child) const; 60 bool isAfterContent(RenderObject* child) const;
61 virtual void invalidateCounters(); 61 virtual void invalidateCounters();
62 62
63 virtual VisiblePosition positionForCoordinates(int x, int y); 63 virtual VisiblePosition positionForCoordinates(int x, int y);
64 64
65 virtual void addLineBoxRects(Vector<IntRect>&, unsigned startOffset = 0, uns igned endOffset = UINT_MAX, bool useSelectionHeight = false); 65 virtual void addLineBoxRects(Vector<IntRect>&, unsigned startOffset = 0, uns igned endOffset = UINT_MAX, bool useSelectionHeight = false);
66 virtual void collectAbsoluteLineBoxQuads(Vector<FloatQuad>&, unsigned startO ffset = 0, unsigned endOffset = UINT_MAX, bool useSelectionHeight = false);
66 67
67 private: 68 private:
68 RenderObject* m_firstChild; 69 RenderObject* m_firstChild;
69 RenderObject* m_lastChild; 70 RenderObject* m_lastChild;
70 }; 71 };
71 72
72 } // namespace WebCore 73 } // namespace WebCore
73 74
74 #endif // RenderContainer_h 75 #endif // RenderContainer_h
OLDNEW
« no previous file with comments | « third_party/WebKit/WebCore/rendering/RenderBox.cpp ('k') | third_party/WebKit/WebCore/rendering/RenderContainer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698