Chromium Code Reviews| Index: ash/desktop_background/desktop_background_resources.h |
| diff --git a/ash/desktop_background/desktop_background_resources.h b/ash/desktop_background/desktop_background_resources.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..ecc74cd0918a9a1c83bae6e82cbc9def791ffda2 |
| --- /dev/null |
| +++ b/ash/desktop_background/desktop_background_resources.h |
| @@ -0,0 +1,19 @@ |
| +// Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef ASH_DESKTOP_BACKGROUND_DESKTOP_BACKGROUND_RESOURCES_H_ |
| +#define ASH_DESKTOP_BACKGROUND_DESKTOP_BACKGROUND_RESOURCES_H_ |
| + |
| +class SkBitmap; |
| + |
| +namespace ash { |
| + |
| +int GetPresetWallpaperIndex(); |
| +int GetWallpaperCount(); |
| +const SkBitmap& GetDefaultWallpaper(int index); |
| +const SkBitmap& GetDefaultWallpaperThumbnail(int index); |
|
flackr
2012/03/08 03:31:58
Only thing I might suggest is putting this in an i
bshe
2012/03/08 16:36:40
+ben
It sounds good to me. But probably leave thi
|
| + |
| +} // namespace ash |
| + |
| +#endif // ASH_DESKTOP_BACKGROUND_DESKTOP_BACKGROUND_RESOURCES_H_ |