| Index: app/theme_provider.h
|
| ===================================================================
|
| --- app/theme_provider.h (revision 22474)
|
| +++ app/theme_provider.h (working copy)
|
| @@ -82,8 +82,14 @@
|
| //
|
| // The bitmap is not assumed to exist. If a theme does not provide an image,
|
| // this function will return nil.
|
| + virtual NSImage* GetNSImageNamed(int id) = 0;
|
|
|
| - virtual NSImage* GetNSImageNamed(int id) = 0;
|
| + // Gets the NSColor with the specified |id|.
|
| + //
|
| + // The color is not assumed to exist. If a theme does not provide an color,
|
| + // this function will return nil.
|
| + virtual NSColor* GetNSColor(int id) = 0;
|
| +
|
| // Gets the NSColor for tinting with the specified |id|.
|
| //
|
| // The tint is not assumed to exist. If a theme does not provide a tint with
|
|
|