chromium/third_party/blink/renderer/modules/accessibility/testing/internals_accessibility.cc

// Copyright 2015 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "third_party/blink/renderer/modules/accessibility/testing/internals_accessibility.h"

#include "third_party/blink/renderer/core/dom/element.h"
#include "third_party/blink/renderer/core/testing/internals.h"
#include "third_party/blink/renderer/modules/accessibility/ax_object.h"
#include "third_party/blink/renderer/modules/accessibility/ax_object_cache_impl.h"

namespace blink {

unsigned InternalsAccessibility::numberOfLiveAXObjects(Internals&) {}

namespace {
AXObject* GetAXObject(const Element* element) {}
}  // namespace

// static
WTF::String InternalsAccessibility::getComputedLabel(Internals&,
                                                     const Element* element) {}

// static
WTF::String InternalsAccessibility::getComputedRole(Internals&,
                                                    const Element* element) {}

}  // namespace blink