summaryrefslogtreecommitdiffstats
path: root/ash/test/test_user_wallpaper_delegate.h
blob: 56842357d75a85cff869c4aaa08bebd8a72aae7a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// Copyright 2013 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_TEST_TEST_USER_WALLPAPER_DELEGATE_H_
#define ASH_TEST_TEST_USER_WALLPAPER_DELEGATE_H_

#include "ash/default_user_wallpaper_delegate.h"

namespace ash {
namespace test {

class TestUserWallpaperDelegate : public DefaultUserWallpaperDelegate {
 public:
  TestUserWallpaperDelegate() : update_wallpaper_count_(0) {}
  virtual ~TestUserWallpaperDelegate() {}

  // DefaultUserWallpaperDelegate overrides:
  virtual void UpdateWallpaper() OVERRIDE;

  int GetUpdateWallpaperCountAndReset();

 private:
  int update_wallpaper_count_;

  DISALLOW_COPY_AND_ASSIGN(TestUserWallpaperDelegate);
};

}  // namespace test
}  // namespace ash

#endif  // ASH_TEST_TEST_USER_WALLPAPER_DELEGATE_H_