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

Side by Side Diff: third_party/WebKit/Source/platform/exported/WebScrollbarThemeClientImpl.h

Issue 1486743002: Clean up some remaining obsolete coordinate-space naming. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed Mac compile Created 5 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
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 * 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
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698