diff options
Diffstat (limited to 'ash/desktop_background/desktop_background_controller_test_api.h')
-rw-r--r-- | ash/desktop_background/desktop_background_controller_test_api.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/ash/desktop_background/desktop_background_controller_test_api.h b/ash/desktop_background/desktop_background_controller_test_api.h new file mode 100644 index 0000000..1fc28df --- /dev/null +++ b/ash/desktop_background/desktop_background_controller_test_api.h @@ -0,0 +1,24 @@ +// Copyright 2014 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_CONTROLLER_TEST_API_H_ +#define ASH_DESKTOP_BACKGROUND_DESKTOP_BACKGROUND_CONTROLLER_TEST_API_H_ + +#include "ash/desktop_background/desktop_background_controller.h" + +namespace ash { + +class DesktopBackgroundController::TestAPI { + public: + explicit TestAPI(DesktopBackgroundController* controller); + + void set_wallpaper_reload_delay_for_test(bool value); + + private: + DesktopBackgroundController* controller_; +}; + +} // namespace ash + +#endif // ASH_DESKTOP_BACKGROUND_DESKTOP_BACKGROUND_CONTROLLER_TEST_API_H_ |