| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 virtual void getTickmarks(WebVector<WebRect>& tickmarks) const override; | 51 virtual void getTickmarks(WebVector<WebRect>& tickmarks) const override; |
| 52 virtual ScrollbarControlSize controlSize() const override; | 52 virtual ScrollbarControlSize controlSize() const override; |
| 53 virtual ScrollbarPart pressedPart() const override; | 53 virtual ScrollbarPart pressedPart() const override; |
| 54 virtual ScrollbarPart hoveredPart() const override; | 54 virtual ScrollbarPart hoveredPart() const override; |
| 55 virtual ScrollbarOverlayStyle scrollbarOverlayStyle() const override; | 55 virtual ScrollbarOverlayStyle scrollbarOverlayStyle() const override; |
| 56 virtual bool isCustomScrollbar() const override; | 56 virtual bool isCustomScrollbar() const override; |
| 57 virtual Orientation orientation() const override; | 57 virtual Orientation orientation() const override; |
| 58 virtual bool isLeftSideVerticalScrollbar() const override; | 58 virtual bool isLeftSideVerticalScrollbar() const override; |
| 59 virtual bool isAlphaLocked() const override; | 59 virtual bool isAlphaLocked() const override; |
| 60 virtual void setIsAlphaLocked(bool) override; | 60 virtual void setIsAlphaLocked(bool) override; |
| 61 virtual float elasticOverscroll() const override; |
| 62 virtual void setElasticOverscroll(float) override; |
| 61 | 63 |
| 62 private: | 64 private: |
| 63 explicit WebScrollbarImpl(Scrollbar*); | 65 explicit WebScrollbarImpl(Scrollbar*); |
| 64 | 66 |
| 65 RefPtrWillBePersistent<Scrollbar> m_scrollbar; | 67 RefPtrWillBePersistent<Scrollbar> m_scrollbar; |
| 66 }; | 68 }; |
| 67 | 69 |
| 68 } // namespace blink | 70 } // namespace blink |
| 69 | 71 |
| 70 #endif | 72 #endif |
| OLD | NEW |