diff options
Diffstat (limited to 'ash/desktop_background/desktop_background_resources.h')
-rw-r--r-- | ash/desktop_background/desktop_background_resources.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/ash/desktop_background/desktop_background_resources.h b/ash/desktop_background/desktop_background_resources.h new file mode 100644 index 0000000..1bcfdf8 --- /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 GetDefaultWallpaperIndex(); +int GetWallpaperCount(); +const SkBitmap& GetWallpaper(int index); +const SkBitmap& GetWallpaperThumbnail(int index); + +} // namespace ash + +#endif // ASH_DESKTOP_BACKGROUND_DESKTOP_BACKGROUND_RESOURCES_H_ |