blob: aa1a9def262c663f8926d13a59e2a33e42e6eb38 [file] [log] [blame]
// Copyright 2013 The Flutter 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 "test_accessibility_bridge.h"
namespace flutter {
std::shared_ptr<FlutterPlatformNodeDelegate>
TestAccessibilityBridge::CreateFlutterPlatformNodeDelegate() {
return std::make_unique<FlutterPlatformNodeDelegate>();
};
void TestAccessibilityBridge::OnAccessibilityEvent(
ui::AXEventGenerator::TargetedEvent targeted_event) {
accessibility_events.push_back(targeted_event.event_params.event);
}
void TestAccessibilityBridge::DispatchAccessibilityAction(
AccessibilityNodeId target,
FlutterSemanticsAction action,
fml::MallocMapping data) {
performed_actions.push_back(action);
}
} // namespace flutter