summaryrefslogtreecommitdiffstats
path: root/ash/test/test_user_wallpaper_delegate.cc
diff options
context:
space:
mode:
Diffstat (limited to 'ash/test/test_user_wallpaper_delegate.cc')
-rw-r--r--ash/test/test_user_wallpaper_delegate.cc22
1 files changed, 22 insertions, 0 deletions
diff --git a/ash/test/test_user_wallpaper_delegate.cc b/ash/test/test_user_wallpaper_delegate.cc
new file mode 100644
index 0000000..c3eb16e
--- /dev/null
+++ b/ash/test/test_user_wallpaper_delegate.cc
@@ -0,0 +1,22 @@
+// 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.
+
+#include "ash/test/test_user_wallpaper_delegate.h"
+
+namespace ash {
+namespace test {
+
+void TestUserWallpaperDelegate::UpdateWallpaper() {
+ DefaultUserWallpaperDelegate::UpdateWallpaper();
+ update_wallpaper_count_ ++;
+}
+
+int TestUserWallpaperDelegate::GetUpdateWallpaperCountAndReset() {
+ int count = update_wallpaper_count_;
+ update_wallpaper_count_ = 0;
+ return count;
+}
+
+} // namespace test
+} // namespace ash