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

Unified Diff: webkit/child/webthemeengine_impl_android.cc

Issue 149513010: Wires through ScrollbarCorner to NativeTheme. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webkit/child/webfallbackthemeengine_impl.cc ('k') | webkit/child/webthemeengine_impl_default.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/child/webthemeengine_impl_android.cc
diff --git a/webkit/child/webthemeengine_impl_android.cc b/webkit/child/webthemeengine_impl_android.cc
index 6968064b53c4ced7a2930d83869856c5a230cf57..f85274c2fbdca43b8633a6144c2b050b06f172bb 100644
--- a/webkit/child/webthemeengine_impl_android.cc
+++ b/webkit/child/webthemeengine_impl_android.cc
@@ -29,18 +29,10 @@ static ui::NativeTheme::Part NativeThemePart(
case WebThemeEngine::PartScrollbarUpArrow:
return ui::NativeTheme::kScrollbarUpArrow;
case WebThemeEngine::PartScrollbarHorizontalThumb:
- // Android doesn't draw scrollbars.
- NOTREACHED();
- return static_cast<ui::NativeTheme::Part>(0);
case WebThemeEngine::PartScrollbarVerticalThumb:
- // Android doesn't draw scrollbars.
- NOTREACHED();
- return static_cast<ui::NativeTheme::Part>(0);
case WebThemeEngine::PartScrollbarHorizontalTrack:
- // Android doesn't draw scrollbars.
- NOTREACHED();
- return static_cast<ui::NativeTheme::Part>(0);
case WebThemeEngine::PartScrollbarVerticalTrack:
+ case WebThemeEngine::PartScrollbarCorner:
// Android doesn't draw scrollbars.
NOTREACHED();
return static_cast<ui::NativeTheme::Part>(0);
« no previous file with comments | « webkit/child/webfallbackthemeengine_impl.cc ('k') | webkit/child/webthemeengine_impl_default.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698