chromium/third_party/blink/renderer/modules/accessibility/ax_range.cc

// 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 "third_party/blink/renderer/modules/accessibility/ax_range.h"

#include "third_party/blink/renderer/core/dom/document.h"
#include "third_party/blink/renderer/modules/accessibility/ax_object.h"

namespace blink {

AXRange::AXRange(const AXPosition& start, const AXPosition& end)
    :{}

AXObject* AXRange::CommonAncestorContainer() const {}

bool AXRange::IsCollapsed() const {}

bool AXRange::IsValid() const {}

// static
AXRange AXRange::RangeOfContents(const AXObject& container) {}

String AXRange::ToString() const {}

bool operator==(const AXRange& a, const AXRange& b) {}

bool operator!=(const AXRange& a, const AXRange& b) {}

std::ostream& operator<<(std::ostream& ostream, const AXRange& range) {}

}  // namespace blink