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

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

Issue 478733002: Rename repaint to paintInvalidation for remaining methods. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 4 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 | « Source/core/rendering/RenderObjectChildList.cpp ('k') | Source/core/rendering/RenderRegion.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) 2011 Adobe Systems Incorporated. All rights reserved. 2 * Copyright (C) 2011 Adobe Systems Incorporated. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above 8 * 1. Redistributions of source code must retain the above
9 * copyright notice, this list of conditions and the following 9 * copyright notice, this list of conditions and the following
10 * disclaimer. 10 * disclaimer.
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 71
72 virtual bool canHaveChildren() const OVERRIDE FINAL { return false; } 72 virtual bool canHaveChildren() const OVERRIDE FINAL { return false; }
73 virtual bool canHaveGeneratedChildren() const OVERRIDE FINAL { return true; } 73 virtual bool canHaveGeneratedChildren() const OVERRIDE FINAL { return true; }
74 74
75 virtual const char* renderName() const OVERRIDE { return "RenderRegion"; } 75 virtual const char* renderName() const OVERRIDE { return "RenderRegion"; }
76 76
77 protected: 77 protected:
78 virtual void computeIntrinsicLogicalWidths(LayoutUnit& minLogicalWidth, Layo utUnit& maxLogicalWidth) const OVERRIDE FINAL; 78 virtual void computeIntrinsicLogicalWidths(LayoutUnit& minLogicalWidth, Layo utUnit& maxLogicalWidth) const OVERRIDE FINAL;
79 79
80 LayoutRect overflowRectForFlowThreadPortion(const LayoutRect& flowThreadPort ionRect, bool isFirstPortion, bool isLastPortion) const; 80 LayoutRect overflowRectForFlowThreadPortion(const LayoutRect& flowThreadPort ionRect, bool isFirstPortion, bool isLastPortion) const;
81 void repaintFlowThreadContentRectangle(const LayoutRect& repaintRect, const LayoutRect& flowThreadPortionRect, 81 void paintInvalidaitonOfFlowThreadContentRectangle(const LayoutRect& paintIn validationRect, const LayoutRect& flowThreadPortionRect,
82 const LayoutRect& flowThreadPortionOverflowRect, const LayoutPoint& regi onLocation) const; 82 const LayoutRect& flowThreadPortionOverflowRect, const LayoutPoint& regi onLocation) const;
83 83
84 private: 84 private:
85 virtual void layoutBlock(bool relayoutChildren) OVERRIDE FINAL; 85 virtual void layoutBlock(bool relayoutChildren) OVERRIDE FINAL;
86 86
87 protected: 87 protected:
88 RenderFlowThread* m_flowThread; 88 RenderFlowThread* m_flowThread;
89 89
90 private: 90 private:
91 LayoutRect m_flowThreadPortionRect; 91 LayoutRect m_flowThreadPortionRect;
92 bool m_isValid : 1; 92 bool m_isValid : 1;
93 }; 93 };
94 94
95 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderRegion, isRenderRegion()); 95 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderRegion, isRenderRegion());
96 96
97 } // namespace blink 97 } // namespace blink
98 98
99 #endif // RenderRegion_h 99 #endif // RenderRegion_h
OLDNEW
« no previous file with comments | « Source/core/rendering/RenderObjectChildList.cpp ('k') | Source/core/rendering/RenderRegion.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698