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

Side by Side Diff: Source/platform/exported/WebScrollbarImpl.h

Issue 819953002: Mac: Update scrollbar size and input position during impl-overscroll (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Peure virtual Created 6 years 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/frame/FrameView.cpp ('k') | Source/platform/exported/WebScrollbarImpl.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 * 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
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
OLDNEW
« no previous file with comments | « Source/core/frame/FrameView.cpp ('k') | Source/platform/exported/WebScrollbarImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698