| 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/views/widget/default_theme_provider.h" | 5 #include "ui/views/widget/default_theme_provider.h" |
| 6 | 6 |
| 7 #include "ui/base/resource/resource_bundle.h" | 7 #include "ui/base/resource/resource_bundle.h" |
| 8 | 8 |
| 9 #if defined(OS_WIN) && !defined(USE_AURA) | 9 #if defined(OS_WIN) && !defined(USE_AURA) |
| 10 #include "ui/views/widget/native_widget_win.h" | 10 #include "ui/views/widget/native_widget_win.h" |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 return NativeWidgetWin::IsAeroGlassEnabled(); | 34 return NativeWidgetWin::IsAeroGlassEnabled(); |
| 35 #else | 35 #else |
| 36 return false; | 36 return false; |
| 37 #endif | 37 #endif |
| 38 } | 38 } |
| 39 | 39 |
| 40 bool DefaultThemeProvider::HasCustomImage(int id) const { | 40 bool DefaultThemeProvider::HasCustomImage(int id) const { |
| 41 return false; | 41 return false; |
| 42 } | 42 } |
| 43 | 43 |
| 44 RefCountedMemory* DefaultThemeProvider::GetRawData(int id) const { | 44 base::RefCountedMemory* DefaultThemeProvider::GetRawData(int id) const { |
| 45 return NULL; | 45 return NULL; |
| 46 } | 46 } |
| 47 | 47 |
| 48 } // namespace views | 48 } // namespace views |
| OLD | NEW |