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

Side by Side Diff: Source/core/layout/line/InlineBox.h

Issue 1032823003: Refactor HitTestResult to store the HitTestRequest (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Updated as per review comments Created 5 years, 8 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
« no previous file with comments | « Source/core/layout/line/EllipsisBox.cpp ('k') | Source/core/layout/line/InlineBox.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) 2003, 2004, 2005, 2006, 2007, 2009, 2010, 2011 Apple Inc. All r ights reserved. 2 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2009, 2010, 2011 Apple Inc. All r ights reserved.
3 * 3 *
4 * This library is free software; you can redistribute it and/or 4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public 5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either 6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version. 7 * version 2 of the License, or (at your option) any later version.
8 * 8 *
9 * This library is distributed in the hope that it will be useful, 9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 } 94 }
95 void adjustBlockDirectionPosition(FloatWillBeLayoutUnit delta) 95 void adjustBlockDirectionPosition(FloatWillBeLayoutUnit delta)
96 { 96 {
97 if (isHorizontal()) 97 if (isHorizontal())
98 adjustPosition(0, delta); 98 adjustPosition(0, delta);
99 else 99 else
100 adjustPosition(delta, 0); 100 adjustPosition(delta, 0);
101 } 101 }
102 102
103 virtual void paint(const PaintInfo&, const LayoutPoint&, LayoutUnit lineTop, LayoutUnit lineBottom); 103 virtual void paint(const PaintInfo&, const LayoutPoint&, LayoutUnit lineTop, LayoutUnit lineBottom);
104 virtual bool nodeAtPoint(const HitTestRequest&, HitTestResult&, const HitTes tLocation& locationInContainer, const LayoutPoint& accumulatedOffset, LayoutUnit lineTop, LayoutUnit lineBottom); 104 virtual bool nodeAtPoint(HitTestResult&, const HitTestLocation& locationInCo ntainer, const LayoutPoint& accumulatedOffset, LayoutUnit lineTop, LayoutUnit li neBottom);
105 105
106 // InlineBoxes are allocated out of the rendering partition. 106 // InlineBoxes are allocated out of the rendering partition.
107 void* operator new(size_t); 107 void* operator new(size_t);
108 void operator delete(void*); 108 void operator delete(void*);
109 109
110 #ifndef NDEBUG 110 #ifndef NDEBUG
111 void showTreeForThis() const; 111 void showTreeForThis() const;
112 void showLineTreeForThis() const; 112 void showLineTreeForThis() const;
113 113
114 virtual void showBox(int = 0) const; 114 virtual void showBox(int = 0) const;
(...skipping 336 matching lines...) Expand 10 before | Expand all | Expand 10 after
451 451
452 } // namespace blink 452 } // namespace blink
453 453
454 #ifndef NDEBUG 454 #ifndef NDEBUG
455 // Outside the WebCore namespace for ease of invocation from gdb. 455 // Outside the WebCore namespace for ease of invocation from gdb.
456 void showTree(const blink::InlineBox*); 456 void showTree(const blink::InlineBox*);
457 void showLineTree(const blink::InlineBox*); 457 void showLineTree(const blink::InlineBox*);
458 #endif 458 #endif
459 459
460 #endif // InlineBox_h 460 #endif // InlineBox_h
OLDNEW
« no previous file with comments | « Source/core/layout/line/EllipsisBox.cpp ('k') | Source/core/layout/line/InlineBox.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698