| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "gfx/native_theme_linux.h" | 5 #include "gfx/native_theme_linux.h" |
| 6 | 6 |
| 7 #include <limits> | 7 #include <limits> |
| 8 | 8 |
| 9 #include "base/logging.h" | 9 #include "base/logging.h" |
| 10 #include "gfx/codec/png_codec.h" | 10 #include "gfx/codec/png_codec.h" |
| (...skipping 921 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 932 | 932 |
| 933 void NativeThemeLinux::SetScrollbarColors(unsigned inactive_color, | 933 void NativeThemeLinux::SetScrollbarColors(unsigned inactive_color, |
| 934 unsigned active_color, | 934 unsigned active_color, |
| 935 unsigned track_color) const { | 935 unsigned track_color) const { |
| 936 thumb_inactive_color_ = inactive_color; | 936 thumb_inactive_color_ = inactive_color; |
| 937 thumb_active_color_ = active_color; | 937 thumb_active_color_ = active_color; |
| 938 track_color_ = track_color; | 938 track_color_ = track_color; |
| 939 } | 939 } |
| 940 | 940 |
| 941 } // namespace gfx | 941 } // namespace gfx |
| OLD | NEW |