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

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

Issue 1253543003: Cleanup LayoutTextControl and its subclasses. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 5 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
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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 60
61 // Subclassed to forward to our inner div. 61 // Subclassed to forward to our inner div.
62 LayoutUnit scrollLeft() const final; 62 LayoutUnit scrollLeft() const final;
63 LayoutUnit scrollTop() const final; 63 LayoutUnit scrollTop() const final;
64 LayoutUnit scrollWidth() const final; 64 LayoutUnit scrollWidth() const final;
65 LayoutUnit scrollHeight() const final; 65 LayoutUnit scrollHeight() const final;
66 void setScrollLeft(LayoutUnit) final; 66 void setScrollLeft(LayoutUnit) final;
67 void setScrollTop(LayoutUnit) final; 67 void setScrollTop(LayoutUnit) final;
68 68
69 int textBlockWidth() const; 69 int textBlockWidth() const;
70 float getAvgCharWidth(AtomicString family) final; 70 float getAvgCharWidth(const AtomicString& family) const final;
71 LayoutUnit preferredContentLogicalWidth(float charWidth) const final; 71 LayoutUnit preferredContentLogicalWidth(float charWidth) const final;
72 LayoutUnit computeControlLogicalHeight(LayoutUnit lineHeight, LayoutUnit non ContentHeight) const override; 72 LayoutUnit computeControlLogicalHeight(LayoutUnit lineHeight, LayoutUnit non ContentHeight) const override;
73 73
74 void styleDidChange(StyleDifference, const ComputedStyle* oldStyle) final; 74 void styleDidChange(StyleDifference, const ComputedStyle* oldStyle) final;
75 75
76 bool textShouldBeTruncated() const; 76 bool textShouldBeTruncated() const;
77 77
78 HTMLElement* innerSpinButtonElement() const; 78 HTMLElement* innerSpinButtonElement() const;
79 79
80 bool m_shouldDrawCapsLockIndicator; 80 bool m_shouldDrawCapsLockIndicator;
(...skipping 15 matching lines...) Expand all
96 return orientation == HorizontalScrollbar; 96 return orientation == HorizontalScrollbar;
97 } 97 }
98 bool scrollsOverflowX() const override { return hasOverflowClip(); } 98 bool scrollsOverflowX() const override { return hasOverflowClip(); }
99 bool scrollsOverflowY() const override { return false; } 99 bool scrollsOverflowY() const override { return false; }
100 bool hasLineIfEmpty() const override { return true; } 100 bool hasLineIfEmpty() const override { return true; }
101 }; 101 };
102 102
103 } 103 }
104 104
105 #endif 105 #endif
OLDNEW
« no previous file with comments | « Source/core/layout/LayoutTextControlMultiLine.cpp ('k') | Source/core/layout/LayoutTextControlSingleLine.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698