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

Side by Side Diff: sky/engine/core/rendering/RenderInline.h

Issue 713073003: remove updateTouchEventTargetRectsIfNeeded (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: moar Created 6 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) 3 * (C) 1999 Antti Koivisto (koivisto@kde.org)
4 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. 4 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved.
5 * 5 *
6 * This library is free software; you can redistribute it and/or 6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public 7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either 8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version. 9 * version 2 of the License, or (at your option) any later version.
10 * 10 *
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 95
96 virtual LayoutRect localCaretRect(InlineBox*, int, LayoutUnit* extraWidthToE ndOfLine) override final; 96 virtual LayoutRect localCaretRect(InlineBox*, int, LayoutUnit* extraWidthToE ndOfLine) override final;
97 97
98 bool hitTestCulledInline(const HitTestRequest&, HitTestResult&, const HitTes tLocation& locationInContainer, const LayoutPoint& accumulatedOffset); 98 bool hitTestCulledInline(const HitTestRequest&, HitTestResult&, const HitTes tLocation& locationInContainer, const LayoutPoint& accumulatedOffset);
99 99
100 protected: 100 protected:
101 virtual void willBeDestroyed() override; 101 virtual void willBeDestroyed() override;
102 102
103 virtual void styleDidChange(StyleDifference, const RenderStyle* oldStyle) ov erride; 103 virtual void styleDidChange(StyleDifference, const RenderStyle* oldStyle) ov erride;
104 104
105 virtual void computeSelfHitTestRects(Vector<LayoutRect>& rects, const Layout Point& layerOffset) const override;
106
107 private: 105 private:
108 virtual RenderObjectChildList* virtualChildren() override final { return chi ldren(); } 106 virtual RenderObjectChildList* virtualChildren() override final { return chi ldren(); }
109 virtual const RenderObjectChildList* virtualChildren() const override final { return children(); } 107 virtual const RenderObjectChildList* virtualChildren() const override final { return children(); }
110 const RenderObjectChildList* children() const { return &m_children; } 108 const RenderObjectChildList* children() const { return &m_children; }
111 RenderObjectChildList* children() { return &m_children; } 109 RenderObjectChildList* children() { return &m_children; }
112 110
113 virtual const char* renderName() const override; 111 virtual const char* renderName() const override;
114 112
115 virtual bool isRenderInline() const override final { return true; } 113 virtual bool isRenderInline() const override final { return true; }
116 114
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
181 179
182 RenderObjectChildList m_children; 180 RenderObjectChildList m_children;
183 RenderLineBoxList m_lineBoxes; // All of the line boxes created for this i nline flow. For example, <i>Hello<br>world.</i> will have two <i> line boxes. 181 RenderLineBoxList m_lineBoxes; // All of the line boxes created for this i nline flow. For example, <i>Hello<br>world.</i> will have two <i> line boxes.
184 }; 182 };
185 183
186 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderInline, isRenderInline()); 184 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderInline, isRenderInline());
187 185
188 } // namespace blink 186 } // namespace blink
189 187
190 #endif // RenderInline_h 188 #endif // RenderInline_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698