| 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 * | 7 * |
| 8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 IntPoint location() const override; | 51 IntPoint location() const override; |
| 52 Widget* parent() const override; | 52 Widget* parent() const override; |
| 53 Widget* root() const override; | 53 Widget* root() const override; |
| 54 void setFrameRect(const IntRect&) override; | 54 void setFrameRect(const IntRect&) override; |
| 55 IntRect frameRect() const override; | 55 IntRect frameRect() const override; |
| 56 void invalidate() override; | 56 void invalidate() override; |
| 57 void invalidateRect(const IntRect&) override; | 57 void invalidateRect(const IntRect&) override; |
| 58 ScrollbarOverlayStyle scrollbarOverlayStyle() const override; | 58 ScrollbarOverlayStyle scrollbarOverlayStyle() const override; |
| 59 void getTickmarks(Vector<IntRect>&) const override; | 59 void getTickmarks(Vector<IntRect>&) const override; |
| 60 bool isScrollableAreaActive() const override; | 60 bool isScrollableAreaActive() const override; |
| 61 IntPoint convertFromContainingWindow(const IntPoint&) const override; | 61 IntPoint convertFromRootFrame(const IntPoint&) const override; |
| 62 bool isCustomScrollbar() const override; | 62 bool isCustomScrollbar() const override; |
| 63 ScrollbarOrientation orientation() const override; | 63 ScrollbarOrientation orientation() const override; |
| 64 bool isLeftSideVerticalScrollbar() const override; | 64 bool isLeftSideVerticalScrollbar() const override; |
| 65 int value() const override; | 65 int value() const override; |
| 66 float currentPos() const override; | 66 float currentPos() const override; |
| 67 int visibleSize() const override; | 67 int visibleSize() const override; |
| 68 int totalSize() const override; | 68 int totalSize() const override; |
| 69 int maximum() const override; | 69 int maximum() const override; |
| 70 ScrollbarControlSize controlSize() const override; | 70 ScrollbarControlSize controlSize() const override; |
| 71 ScrollbarPart pressedPart() const override; | 71 ScrollbarPart pressedPart() const override; |
| (...skipping 14 matching lines...) Expand all Loading... |
| 86 DisplayItemClient displayItemClient() const override; | 86 DisplayItemClient displayItemClient() const override; |
| 87 String debugName() const override; | 87 String debugName() const override; |
| 88 | 88 |
| 89 private: | 89 private: |
| 90 WebScrollbar* m_scrollbar; | 90 WebScrollbar* m_scrollbar; |
| 91 }; | 91 }; |
| 92 | 92 |
| 93 } // namespace blink | 93 } // namespace blink |
| 94 | 94 |
| 95 #endif // WebScrollbarThemeClientImpl_h | 95 #endif // WebScrollbarThemeClientImpl_h |
| OLD | NEW |