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

Side by Side Diff: Source/platform/mac/ScrollAnimatorMac.h

Issue 212063004: Remove Ununsed Input Variable from ScrollAnimator NotifyPosChange (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebase Created 6 years, 8 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
« no previous file with comments | « no previous file | Source/platform/mac/ScrollAnimatorMac.mm » ('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) 2010, 2011 Apple Inc. All rights reserved. 2 * Copyright (C) 2010, 2011 Apple 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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 90
91 #if USE(RUBBER_BANDING) 91 #if USE(RUBBER_BANDING)
92 virtual bool handleWheelEvent(const PlatformWheelEvent&) OVERRIDE; 92 virtual bool handleWheelEvent(const PlatformWheelEvent&) OVERRIDE;
93 #endif 93 #endif
94 94
95 virtual void handleWheelEventPhase(PlatformWheelEventPhase) OVERRIDE; 95 virtual void handleWheelEventPhase(PlatformWheelEventPhase) OVERRIDE;
96 96
97 virtual void cancelAnimations() OVERRIDE; 97 virtual void cancelAnimations() OVERRIDE;
98 virtual void setIsActive() OVERRIDE; 98 virtual void setIsActive() OVERRIDE;
99 99
100 virtual void notifyPositionChanged(const FloatSize& delta) OVERRIDE;
101 virtual void contentAreaWillPaint() const OVERRIDE; 100 virtual void contentAreaWillPaint() const OVERRIDE;
102 virtual void mouseEnteredContentArea() const OVERRIDE; 101 virtual void mouseEnteredContentArea() const OVERRIDE;
103 virtual void mouseExitedContentArea() const OVERRIDE; 102 virtual void mouseExitedContentArea() const OVERRIDE;
104 virtual void mouseMovedInContentArea() const OVERRIDE; 103 virtual void mouseMovedInContentArea() const OVERRIDE;
105 virtual void mouseEnteredScrollbar(Scrollbar*) const OVERRIDE; 104 virtual void mouseEnteredScrollbar(Scrollbar*) const OVERRIDE;
106 virtual void mouseExitedScrollbar(Scrollbar*) const OVERRIDE; 105 virtual void mouseExitedScrollbar(Scrollbar*) const OVERRIDE;
107 virtual void willStartLiveResize() OVERRIDE; 106 virtual void willStartLiveResize() OVERRIDE;
108 virtual void contentsResized() const OVERRIDE; 107 virtual void contentsResized() const OVERRIDE;
109 virtual void willEndLiveResize() OVERRIDE; 108 virtual void willEndLiveResize() OVERRIDE;
110 virtual void contentAreaDidShow() const OVERRIDE; 109 virtual void contentAreaDidShow() const OVERRIDE;
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
153 #endif 152 #endif
154 153
155 bool m_haveScrolledSincePageLoad; 154 bool m_haveScrolledSincePageLoad;
156 bool m_needsScrollerStyleUpdate; 155 bool m_needsScrollerStyleUpdate;
157 IntRect m_visibleScrollerThumbRect; 156 IntRect m_visibleScrollerThumbRect;
158 }; 157 };
159 158
160 } // namespace WebCore 159 } // namespace WebCore
161 160
162 #endif // ScrollAnimatorMac_h 161 #endif // ScrollAnimatorMac_h
OLDNEW
« no previous file with comments | « no previous file | Source/platform/mac/ScrollAnimatorMac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698