| OLD | NEW |
| (Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "ui/base/default_theme_provider.h" |
| 6 |
| 7 #import <Cocoa/Cocoa.h> |
| 8 #include "ui/base/resource/resource_bundle.h" |
| 9 |
| 10 namespace ui { |
| 11 |
| 12 #if !defined(TOOLKIT_VIEWS) |
| 13 NSImage* DefaultThemeProvider::GetNSImageNamed(int id, |
| 14 bool allow_default) const { |
| 15 return ResourceBundle::GetSharedInstance(). |
| 16 GetNativeImageNamed(id).ToNSImage(); |
| 17 } |
| 18 |
| 19 NSColor* DefaultThemeProvider::GetNSImageColorNamed(int id, |
| 20 bool allow_default) const { |
| 21 NSImage* image = GetNSImageNamed(id, allow_default); |
| 22 return [NSColor colorWithPatternImage:image]; |
| 23 } |
| 24 |
| 25 NSColor* DefaultThemeProvider::GetNSColor(int id, |
| 26 bool allow_default) const { |
| 27 return [NSColor redColor]; |
| 28 } |
| 29 |
| 30 NSColor* DefaultThemeProvider::GetNSColorTint(int id, |
| 31 bool allow_default) const { |
| 32 return [NSColor redColor]; |
| 33 } |
| 34 |
| 35 NSGradient* DefaultThemeProvider::GetNSGradient(int id) const { |
| 36 return nil; |
| 37 } |
| 38 #endif |
| 39 |
| 40 } // namespace ui |
| OLD | NEW |