// Copyright 2021 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/accessibility/platform/inspect/ax_event_recorder.h" #include "base/functional/callback_helpers.h" #include "base/logging.h" namespace ui { AXEventRecorder::AXEventRecorder() = default; AXEventRecorder::~AXEventRecorder() = default; void AXEventRecorder::StopListeningToEvents() { … } void AXEventRecorder::OnEvent(const std::string& event) { … } const std::vector<std::string> AXEventRecorder::GetEventLogs() const { … } } // namespace ui