Chromium Code Reviews

Side by Side Diff: Source/core/rendering/RenderObject.h

Issue 236203020: Separate repaint and layout requirements of StyleDifference (Step 1) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase; Renaming of some methods and small changes in StyleDifference Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | | Annotate | Revision Log
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 1060 matching lines...)
1071 private: 1071 private:
1072 RenderBlock* containerForFixedPosition(const RenderLayerModelObject* repaint Container = 0, bool* repaintContainerSkipped = 0) const; 1072 RenderBlock* containerForFixedPosition(const RenderLayerModelObject* repaint Container = 0, bool* repaintContainerSkipped = 0) const;
1073 1073
1074 RenderFlowThread* locateFlowThreadContainingBlock() const; 1074 RenderFlowThread* locateFlowThreadContainingBlock() const;
1075 void removeFromRenderFlowThread(); 1075 void removeFromRenderFlowThread();
1076 void removeFromRenderFlowThreadRecursive(RenderFlowThread*); 1076 void removeFromRenderFlowThreadRecursive(RenderFlowThread*);
1077 1077
1078 bool hasImmediateNonWhitespaceTextChildOrPropertiesDependentOnColor() const; 1078 bool hasImmediateNonWhitespaceTextChildOrPropertiesDependentOnColor() const;
1079 1079
1080 RenderStyle* cachedFirstLineStyle() const; 1080 RenderStyle* cachedFirstLineStyle() const;
1081 StyleDifference adjustStyleDifference(StyleDifference, unsigned contextSensi tiveProperties) const; 1081 StyleDifference adjustStyleDifference(StyleDifference) const;
1082 1082
1083 Color selectionColor(int colorProperty) const; 1083 Color selectionColor(int colorProperty) const;
1084 1084
1085 void removeShapeImageClient(ShapeValue*); 1085 void removeShapeImageClient(ShapeValue*);
1086 1086
1087 #ifndef NDEBUG 1087 #ifndef NDEBUG
1088 void checkBlockPositionedObjectsNeedLayout(); 1088 void checkBlockPositionedObjectsNeedLayout();
1089 #endif 1089 #endif
1090 const char* invalidationReasonToString(InvalidationReason) const; 1090 const char* invalidationReasonToString(InvalidationReason) const;
1091 1091
(...skipping 350 matching lines...)
1442 void showTree(const WebCore::RenderObject*); 1442 void showTree(const WebCore::RenderObject*);
1443 void showLineTree(const WebCore::RenderObject*); 1443 void showLineTree(const WebCore::RenderObject*);
1444 void showRenderTree(const WebCore::RenderObject* object1); 1444 void showRenderTree(const WebCore::RenderObject* object1);
1445 // We don't make object2 an optional parameter so that showRenderTree 1445 // We don't make object2 an optional parameter so that showRenderTree
1446 // can be called from gdb easily. 1446 // can be called from gdb easily.
1447 void showRenderTree(const WebCore::RenderObject* object1, const WebCore::RenderO bject* object2); 1447 void showRenderTree(const WebCore::RenderObject* object1, const WebCore::RenderO bject* object2);
1448 1448
1449 #endif 1449 #endif
1450 1450
1451 #endif // RenderObject_h 1451 #endif // RenderObject_h
OLDNEW

Powered by Google App Engine