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

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

Issue 1231363003: Fix virtual/override/final usage in Source/core/layout/. (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
« no previous file with comments | « Source/core/layout/LayoutSlider.h ('k') | Source/core/layout/LayoutSliderThumb.h » ('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 * Copyright (C) 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2008, 2009 Apple Inc. All rights reserved.
3 * Copyright (C) 2010 Google Inc. All rights reserved. 3 * Copyright (C) 2010 Google Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are 6 * modification, are permitted provided that the following conditions are
7 * met: 7 * met:
8 * 8 *
9 * * Redistributions of source code must retain the above copyright 9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 25 matching lines...) Expand all
36 36
37 namespace blink { 37 namespace blink {
38 38
39 class SliderContainerElement; 39 class SliderContainerElement;
40 40
41 // FIXME: Find a way to cascade appearance and adjust heights, and get rid of th is class. 41 // FIXME: Find a way to cascade appearance and adjust heights, and get rid of th is class.
42 // http://webkit.org/b/62535 42 // http://webkit.org/b/62535
43 class LayoutSliderContainer : public LayoutFlexibleBox { 43 class LayoutSliderContainer : public LayoutFlexibleBox {
44 public: 44 public:
45 LayoutSliderContainer(SliderContainerElement*); 45 LayoutSliderContainer(SliderContainerElement*);
46 virtual void computeLogicalHeight(LayoutUnit logicalHeight, LayoutUnit logic alTop, LogicalExtentComputedValues&) const override; 46 void computeLogicalHeight(LayoutUnit logicalHeight, LayoutUnit logicalTop, L ogicalExtentComputedValues&) const override;
47 47
48 private: 48 private:
49 virtual void layout() override; 49 void layout() override;
50 }; 50 };
51 51
52 } // namespace blink 52 } // namespace blink
53 53
54 #endif // LayoutSliderContainer_h 54 #endif // LayoutSliderContainer_h
OLDNEW
« no previous file with comments | « Source/core/layout/LayoutSlider.h ('k') | Source/core/layout/LayoutSliderThumb.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698