Index: ui/views/style/platform_style.cc |
diff --git a/ui/views/style/platform_style.cc b/ui/views/style/platform_style.cc |
index 706f0ab116d87b59eedf9db05b91a8bb9a2d7df8..8fc07ef62c939ac4b7d8a1d9b8eaa08ac7888e31 100644 |
--- a/ui/views/style/platform_style.cc |
+++ b/ui/views/style/platform_style.cc |
@@ -15,7 +15,7 @@ |
#include "ui/views/controls/button/label_button.h" |
#include "ui/views/controls/button/label_button_border.h" |
#include "ui/views/controls/focusable_border.h" |
-#include "ui/views/controls/scrollbar/native_scroll_bar.h" |
+#include "ui/views/controls/scrollbar/scroll_bar_views.h" |
#if defined(OS_LINUX) && !defined(OS_CHROMEOS) |
#define DESKTOP_LINUX |
@@ -55,7 +55,7 @@ gfx::ImageSkia PlatformStyle::CreateComboboxArrow(bool is_enabled, |
// static |
std::unique_ptr<ScrollBar> PlatformStyle::CreateScrollBar(bool is_horizontal) { |
- return base::MakeUnique<NativeScrollBar>(is_horizontal); |
+ return base::MakeUnique<ScrollBarViews>(is_horizontal); |
} |
// static |