Chromium Code Reviews| Index: Source/core/rendering/RenderSliderContainer.h |
| diff --git a/LICENSE b/Source/core/rendering/RenderSliderContainer.h |
| similarity index 70% |
| copy from LICENSE |
| copy to Source/core/rendering/RenderSliderContainer.h |
| index 70bcb8ad118978579fa055f7ecc99604930900ce..aabb9d6a4d5771cbc89d5cdff48ed55223e95ab8 100644 |
| --- a/LICENSE |
| +++ b/Source/core/rendering/RenderSliderContainer.h |
| @@ -28,3 +28,28 @@ |
| // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| + |
| +#ifndef RenderSliderContainer_h |
| +#define RenderSliderContainer_h |
| + |
| +#include "core/html/shadow/SliderThumbElement.h" |
|
tkent
2014/07/17 23:56:13
We don't need to include SliderThumbElement.h.
deepak.sa
2014/07/18 06:06:56
Done.
|
| +#include "core/rendering/RenderFlexibleBox.h" |
| + |
| +namespace WebCore { |
| + |
| +class SliderContainerElement; |
| + |
| +// FIXME: Find a way to cascade appearance and adjust heights, and get rid of this class. |
| +// http://webkit.org/b/62535 |
| +class RenderSliderContainer : public RenderFlexibleBox { |
| +public: |
| + RenderSliderContainer(SliderContainerElement*); |
| + virtual void computeLogicalHeight(LayoutUnit logicalHeight, LayoutUnit logicalTop, LogicalExtentComputedValues&) const OVERRIDE; |
| + |
| +private: |
| + virtual void layout() OVERRIDE; |
| +}; |
| + |
| +} // namespace WebCore |
| + |
| +#endif // RenderSliderContainer_h |