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

Side by Side Diff: Source/core/platform/chromium/support/WebScrollbarImpl.cpp

Issue 23480037: Fix RTL scroll bars being misrendered on Android. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: isLeftSideVerticalScrollbar Created 7 years, 3 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 | Annotate | Revision Log
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 10 matching lines...) Expand all
21 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 21 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
22 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 22 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23 */ 23 */
24 24
25 #include "config.h" 25 #include "config.h"
26 26
27 #include "core/platform/chromium/support/WebScrollbarImpl.h" 27 #include "core/platform/chromium/support/WebScrollbarImpl.h"
28 28
29 #include "core/platform/Scrollbar.h" 29 #include "core/platform/Scrollbar.h"
30 #include "core/platform/graphics/IntRect.h" 30 #include "core/platform/graphics/IntRect.h"
31 #include "core/platform/text/TextDirection.h"
32 31
33 namespace WebKit { 32 namespace WebKit {
34 33
35 WebScrollbarImpl::WebScrollbarImpl(WebCore::Scrollbar* scrollbar) 34 WebScrollbarImpl::WebScrollbarImpl(WebCore::Scrollbar* scrollbar)
36 : m_scrollbar(scrollbar) 35 : m_scrollbar(scrollbar)
37 { 36 {
38 } 37 }
39 38
40 bool WebScrollbarImpl::isOverlay() const 39 bool WebScrollbarImpl::isOverlay() const
41 { 40 {
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 WebScrollbar::ScrollbarOverlayStyle WebScrollbarImpl::scrollbarOverlayStyle() co nst 111 WebScrollbar::ScrollbarOverlayStyle WebScrollbarImpl::scrollbarOverlayStyle() co nst
113 { 112 {
114 return static_cast<WebScrollbar::ScrollbarOverlayStyle>(m_scrollbar->scrollb arOverlayStyle()); 113 return static_cast<WebScrollbar::ScrollbarOverlayStyle>(m_scrollbar->scrollb arOverlayStyle());
115 } 114 }
116 115
117 WebScrollbar::Orientation WebScrollbarImpl::orientation() const 116 WebScrollbar::Orientation WebScrollbarImpl::orientation() const
118 { 117 {
119 return static_cast<WebScrollbar::Orientation>(m_scrollbar->orientation()); 118 return static_cast<WebScrollbar::Orientation>(m_scrollbar->orientation());
120 } 119 }
121 120
122 bool WebScrollbarImpl::isRightToLeft() const 121 bool WebScrollbarImpl::isLeftSideVerticalScrollbar() const
123 { 122 {
124 return m_scrollbar->textDirection() == WebCore::RTL; 123 return m_scrollbar->isLeftSideVerticalScrollbar();
125 } 124 }
126 125
127 bool WebScrollbarImpl::isCustomScrollbar() const 126 bool WebScrollbarImpl::isCustomScrollbar() const
128 { 127 {
129 return m_scrollbar->isCustomScrollbar(); 128 return m_scrollbar->isCustomScrollbar();
130 } 129 }
131 130
132 bool WebScrollbarImpl::isAlphaLocked() const 131 bool WebScrollbarImpl::isAlphaLocked() const
133 { 132 {
134 return m_scrollbar->isAlphaLocked(); 133 return m_scrollbar->isAlphaLocked();
135 } 134 }
136 135
137 void WebScrollbarImpl::setIsAlphaLocked(bool flag) 136 void WebScrollbarImpl::setIsAlphaLocked(bool flag)
138 { 137 {
139 m_scrollbar->setIsAlphaLocked(flag); 138 m_scrollbar->setIsAlphaLocked(flag);
140 } 139 }
141 140
142 } // namespace WebKit 141 } // namespace WebKit
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698