// Copyright 2018 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "ui/base/accelerators/test_accelerator_target.h" namespace ui { TestAcceleratorTarget::TestAcceleratorTarget(bool accelerator_pressed_result) : … { … } TestAcceleratorTarget::~TestAcceleratorTarget() = default; void TestAcceleratorTarget::ResetCounts() { … } bool TestAcceleratorTarget::AcceleratorPressed( const ui::Accelerator& accelerator) { … } bool TestAcceleratorTarget::CanHandleAccelerators() const { … } } // namespace ui