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

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

Issue 899163003: Move rendering/RenderObject to layout/LayoutObject. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 10 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/RenderLineBoxList.cpp ('k') | Source/core/rendering/RenderListBox.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 * This file is part of the select element renderer in WebCore. 2 * This file is part of the select element renderer in WebCore.
3 * 3 *
4 * Copyright (C) 2006, 2007, 2009 Apple Inc. All rights reserved. 4 * Copyright (C) 2006, 2007, 2009 Apple Inc. All rights reserved.
5 * 5 *
6 * Redistribution and use in source and binary forms, with or without 6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions 7 * modification, are permitted provided that the following conditions
8 * are met: 8 * are met:
9 * 9 *
10 * 1. Redistributions of source code must retain the above copyright 10 * 1. Redistributions of source code must retain the above copyright
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 int size() const; 45 int size() const;
46 46
47 // Unlike scrollRectToVisible this will not scroll parent boxes. 47 // Unlike scrollRectToVisible this will not scroll parent boxes.
48 void scrollToRect(const LayoutRect&); 48 void scrollToRect(const LayoutRect&);
49 49
50 private: 50 private:
51 HTMLSelectElement* selectElement() const; 51 HTMLSelectElement* selectElement() const;
52 52
53 virtual const char* renderName() const override { return "RenderListBox"; } 53 virtual const char* renderName() const override { return "RenderListBox"; }
54 54
55 virtual bool isOfType(RenderObjectType type) const override { return type == RenderObjectListBox || RenderBlockFlow::isOfType(type); } 55 virtual bool isOfType(LayoutObjectType type) const override { return type == LayoutObjectListBox || RenderBlockFlow::isOfType(type); }
56 56
57 virtual void computeLogicalHeight(LayoutUnit logicalHeight, LayoutUnit logic alTop, LogicalExtentComputedValues&) const override; 57 virtual void computeLogicalHeight(LayoutUnit logicalHeight, LayoutUnit logic alTop, LogicalExtentComputedValues&) const override;
58 virtual void computeIntrinsicLogicalWidths(LayoutUnit& minLogicalWidth, Layo utUnit& maxLogicalWidth) const override; 58 virtual void computeIntrinsicLogicalWidths(LayoutUnit& minLogicalWidth, Layo utUnit& maxLogicalWidth) const override;
59 59
60 virtual void stopAutoscroll() override; 60 virtual void stopAutoscroll() override;
61 61
62 LayoutUnit defaultItemHeight() const; 62 LayoutUnit defaultItemHeight() const;
63 LayoutUnit itemHeight() const; 63 LayoutUnit itemHeight() const;
64 }; 64 };
65 65
66 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderListBox, isListBox()); 66 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(RenderListBox, isListBox());
67 67
68 } // namepace blink 68 } // namepace blink
69 69
70 #endif // RenderListBox_h 70 #endif // RenderListBox_h
OLDNEW
« no previous file with comments | « Source/core/rendering/RenderLineBoxList.cpp ('k') | Source/core/rendering/RenderListBox.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698