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

Side by Side Diff: Source/core/layout/LayoutTextControlSingleLine.h

Issue 1032823003: Refactor HitTestResult to store the HitTestRequest (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Updating 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006, 2007, 2009 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2009 Apple Inc. All rights reserved.
3 * Copyright (C) 2008 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/) 3 * Copyright (C) 2008 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/)
4 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). 4 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 HTMLInputElement* inputElement() const; 47 HTMLInputElement* inputElement() const;
48 48
49 private: 49 private:
50 virtual bool hasControlClip() const override final; 50 virtual bool hasControlClip() const override final;
51 virtual LayoutRect controlClipRect(const LayoutPoint&) const override final; 51 virtual LayoutRect controlClipRect(const LayoutPoint&) const override final;
52 virtual bool isOfType(LayoutObjectType type) const override { return type == LayoutObjectTextField || LayoutTextControl::isOfType(type); } 52 virtual bool isOfType(LayoutObjectType type) const override { return type == LayoutObjectTextField || LayoutTextControl::isOfType(type); }
53 53
54 virtual void paint(const PaintInfo&, const LayoutPoint&) override; 54 virtual void paint(const PaintInfo&, const LayoutPoint&) override;
55 virtual void layout() override; 55 virtual void layout() override;
56 56
57 virtual bool nodeAtPoint(const HitTestRequest&, HitTestResult&, const HitTes tLocation& locationInContainer, const LayoutPoint& accumulatedOffset, HitTestAct ion) override final; 57 virtual bool nodeAtPoint(HitTestResult&, const HitTestLocation& locationInCo ntainer, const LayoutPoint& accumulatedOffset, HitTestAction) override final;
58 58
59 virtual void autoscroll(const IntPoint&) override final; 59 virtual void autoscroll(const IntPoint&) override final;
60 60
61 // Subclassed to forward to our inner div. 61 // Subclassed to forward to our inner div.
62 virtual LayoutUnit scrollLeft() const override final; 62 virtual LayoutUnit scrollLeft() const override final;
63 virtual LayoutUnit scrollTop() const override final; 63 virtual LayoutUnit scrollTop() const override final;
64 virtual LayoutUnit scrollWidth() const override final; 64 virtual LayoutUnit scrollWidth() const override final;
65 virtual LayoutUnit scrollHeight() const override final; 65 virtual LayoutUnit scrollHeight() const override final;
66 virtual void setScrollLeft(LayoutUnit) override final; 66 virtual void setScrollLeft(LayoutUnit) override final;
67 virtual void setScrollTop(LayoutUnit) override final; 67 virtual void setScrollTop(LayoutUnit) override final;
(...skipping 28 matching lines...) Expand all
96 return orientation == HorizontalScrollbar; 96 return orientation == HorizontalScrollbar;
97 } 97 }
98 virtual bool scrollsOverflowX() const override { return hasOverflowClip(); } 98 virtual bool scrollsOverflowX() const override { return hasOverflowClip(); }
99 virtual bool scrollsOverflowY() const override { return false; } 99 virtual bool scrollsOverflowY() const override { return false; }
100 virtual bool hasLineIfEmpty() const override { return true; } 100 virtual bool hasLineIfEmpty() const override { return true; }
101 }; 101 };
102 102
103 } 103 }
104 104
105 #endif 105 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698