| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "ui/base/default_theme_provider.h" | 5 #include "ui/base/default_theme_provider.h" |
| 6 | 6 |
| 7 #include "ui/base/resource/resource_bundle.h" | 7 #include "ui/base/resource/resource_bundle.h" |
| 8 #include "ui/gfx/image/image_skia.h" | 8 #include "ui/gfx/image/image_skia.h" |
| 9 | 9 |
| 10 #if defined(OS_WIN) && !defined(USE_AURA) | 10 #if defined(OS_WIN) && !defined(USE_AURA) |
| 11 #include "ui/base/win/shell.h" | 11 #include "ui/base/win/shell.h" |
| 12 #endif | 12 #endif |
| 13 | 13 |
| 14 namespace ui { | 14 namespace ui { |
| 15 | 15 |
| 16 DefaultThemeProvider::DefaultThemeProvider() {} | 16 DefaultThemeProvider::DefaultThemeProvider() {} |
| 17 | 17 |
| 18 DefaultThemeProvider::~DefaultThemeProvider() {} | 18 DefaultThemeProvider::~DefaultThemeProvider() {} |
| 19 | 19 |
| 20 bool DefaultThemeProvider::UsingNativeTheme() const { | 20 bool DefaultThemeProvider::UsingSystemTheme() const { |
| 21 return true; | 21 return true; |
| 22 } | 22 } |
| 23 | 23 |
| 24 gfx::ImageSkia* DefaultThemeProvider::GetImageSkiaNamed(int id) const { | 24 gfx::ImageSkia* DefaultThemeProvider::GetImageSkiaNamed(int id) const { |
| 25 return ResourceBundle::GetSharedInstance().GetImageSkiaNamed(id); | 25 return ResourceBundle::GetSharedInstance().GetImageSkiaNamed(id); |
| 26 } | 26 } |
| 27 | 27 |
| 28 SkColor DefaultThemeProvider::GetColor(int id) const { | 28 SkColor DefaultThemeProvider::GetColor(int id) const { |
| 29 // Return debugging-blue. | 29 // Return debugging-blue. |
| 30 return 0xff0000ff; | 30 return 0xff0000ff; |
| (...skipping 21 matching lines...) Expand all Loading... |
| 52 return NULL; | 52 return NULL; |
| 53 } | 53 } |
| 54 | 54 |
| 55 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(TOOLKIT_VIEWS) && !defi
ned(OS_ANDROID) | 55 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(TOOLKIT_VIEWS) && !defi
ned(OS_ANDROID) |
| 56 GdkPixbuf* DefaultThemeProvider::GetRTLEnabledPixbufNamed(int id) const { | 56 GdkPixbuf* DefaultThemeProvider::GetRTLEnabledPixbufNamed(int id) const { |
| 57 return NULL; | 57 return NULL; |
| 58 } | 58 } |
| 59 #endif | 59 #endif |
| 60 | 60 |
| 61 } // namespace ui | 61 } // namespace ui |
| OLD | NEW |