blob: 4f58af4c92fcb317227c53965cb9d81d0126bb90 [file] [log] [blame]
// Copyright 2017 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/system/power/power_button_screenshot_controller_test_api.h"
#include "ash/system/power/power_button_screenshot_controller.h"
namespace ash {
PowerButtonScreenshotControllerTestApi::PowerButtonScreenshotControllerTestApi(
PowerButtonScreenshotController* controller)
: controller_(controller) {
DCHECK(controller_);
}
PowerButtonScreenshotControllerTestApi::
~PowerButtonScreenshotControllerTestApi() = default;
bool PowerButtonScreenshotControllerTestApi::TriggerVolumeDownTimer() {
if (!controller_->volume_down_timer_.IsRunning())
return false;
controller_->volume_down_timer_.FireNow();
return true;
}
} // namespace ash