| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #ifndef APP_MAC_NSIMAGE_CACHE_H_ | 5 #ifndef UI_GFX_MAC_NSIMAGE_CACHE_H_ |
| 6 #define APP_MAC_NSIMAGE_CACHE_H_ | 6 #define UI_GFX_MAC_NSIMAGE_CACHE_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #ifdef __OBJC__ | 9 #ifdef __OBJC__ |
| 10 @class NSImage; | 10 @class NSImage; |
| 11 @class NSString; | 11 @class NSString; |
| 12 #else | 12 #else |
| 13 class NSImage; | 13 class NSImage; |
| 14 class NSString; | 14 class NSString; |
| 15 #endif | 15 #endif |
| 16 | 16 |
| 17 namespace app { | 17 namespace gfx { |
| 18 namespace mac { | |
| 19 | 18 |
| 20 // Returns an autoreleased image from the main app bundle | 19 // Returns an autoreleased image from the main app bundle |
| 21 // (mac_util::MainAppBundle()) with the given name, and keeps it in memory so | 20 // (mac_util::MainAppBundle()) with the given name, and keeps it in memory so |
| 22 // future fetches are fast. | 21 // future fetches are fast. |
| 23 // NOTE: | 22 // NOTE: |
| 24 // - This should only be called on the main thread. | 23 // - This should only be called on the main thread. |
| 25 // - The caller should retain the image if they want to keep it around, as | 24 // - The caller should retain the image if they want to keep it around, as |
| 26 // the cache could have limit on size/lifetime, etc. | 25 // the cache could have limit on size/lifetime, etc. |
| 27 NSImage* GetCachedImageWithName(NSString* name); | 26 NSImage* GetCachedImageWithName(NSString* name); |
| 28 | 27 |
| 29 // Clears the image cache. | 28 // Clears the image cache. |
| 30 void ClearCachedImages(void); | 29 void ClearCachedImages(void); |
| 31 | 30 |
| 32 } // namespace mac | 31 } // namespace gfx |
| 33 } // namespace app | |
| 34 | 32 |
| 35 #endif // APP_MAC_NSIMAGE_CACHE_H_ | 33 #endif // UI_GFX_MAC_NSIMAGE_CACHE_H_ |
| OLD | NEW |