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

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

Issue 1200853003: HTMLSelectElement size type changed to unsigned (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 6 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/html/HTMLSelectElement.idl ('k') | Source/core/layout/LayoutListBox.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 layoutObject in WebCore. 2 * This file is part of the select element layoutObject 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 24 matching lines...) Expand all
35 35
36 namespace blink { 36 namespace blink {
37 37
38 class HTMLSelectElement; 38 class HTMLSelectElement;
39 39
40 class LayoutListBox final : public LayoutBlockFlow { 40 class LayoutListBox final : public LayoutBlockFlow {
41 public: 41 public:
42 explicit LayoutListBox(Element*); 42 explicit LayoutListBox(Element*);
43 virtual ~LayoutListBox(); 43 virtual ~LayoutListBox();
44 44
45 int size() const; 45 unsigned 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 virtual const char* name() const override { return "LayoutListBox"; } 50 virtual const char* name() const override { return "LayoutListBox"; }
51 51
52 private: 52 private:
53 HTMLSelectElement* selectElement() const; 53 HTMLSelectElement* selectElement() const;
54 54
55 virtual bool isOfType(LayoutObjectType type) const override { return type == LayoutObjectListBox || LayoutBlockFlow::isOfType(type); } 55 virtual bool isOfType(LayoutObjectType type) const override { return type == LayoutObjectListBox || LayoutBlockFlow::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_LAYOUT_OBJECT_TYPE_CASTS(LayoutListBox, isListBox()); 66 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutListBox, isListBox());
67 67
68 } // namepace blink 68 } // namepace blink
69 69
70 #endif // LayoutListBox_h 70 #endif // LayoutListBox_h
OLDNEW
« no previous file with comments | « Source/core/html/HTMLSelectElement.idl ('k') | Source/core/layout/LayoutListBox.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698