| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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 #import <Cocoa/Cocoa.h> | 7 #import <Cocoa/Cocoa.h> |
| 8 | 8 |
| 9 #include "ui/base/resource/resource_bundle.h" | 9 #include "ui/base/resource/resource_bundle.h" |
| 10 | 10 |
| 11 namespace ui { | 11 namespace ui { |
| 12 | 12 |
| 13 bool DefaultThemeProvider::UsingSystemTheme() const { |
| 14 return true; |
| 15 } |
| 16 |
| 13 NSImage* DefaultThemeProvider::GetNSImageNamed(int id) const { | 17 NSImage* DefaultThemeProvider::GetNSImageNamed(int id) const { |
| 14 return ResourceBundle::GetSharedInstance(). | 18 return ResourceBundle::GetSharedInstance(). |
| 15 GetNativeImageNamed(id).ToNSImage(); | 19 GetNativeImageNamed(id).ToNSImage(); |
| 16 } | 20 } |
| 17 | 21 |
| 18 NSColor* DefaultThemeProvider::GetNSImageColorNamed(int id) const { | 22 NSColor* DefaultThemeProvider::GetNSImageColorNamed(int id) const { |
| 19 NSImage* image = GetNSImageNamed(id); | 23 NSImage* image = GetNSImageNamed(id); |
| 20 return [NSColor colorWithPatternImage:image]; | 24 return [NSColor colorWithPatternImage:image]; |
| 21 } | 25 } |
| 22 | 26 |
| 23 NSColor* DefaultThemeProvider::GetNSColor(int id) const { | 27 NSColor* DefaultThemeProvider::GetNSColor(int id) const { |
| 24 return [NSColor redColor]; | 28 return [NSColor redColor]; |
| 25 } | 29 } |
| 26 | 30 |
| 27 NSColor* DefaultThemeProvider::GetNSColorTint(int id) const { | 31 NSColor* DefaultThemeProvider::GetNSColorTint(int id) const { |
| 28 return [NSColor redColor]; | 32 return [NSColor redColor]; |
| 29 } | 33 } |
| 30 | 34 |
| 31 NSGradient* DefaultThemeProvider::GetNSGradient(int id) const { | 35 NSGradient* DefaultThemeProvider::GetNSGradient(int id) const { |
| 32 return nil; | 36 return nil; |
| 33 } | 37 } |
| 34 | 38 |
| 35 } // namespace ui | 39 } // namespace ui |
| OLD | NEW |