#include "util/url.h"
#include <limits.h>
#include <string_view>
#include <utility>
#include "url/third_party/mozilla/url_parse.h"
#include "url/url_constants.h"
#include "url/url_util.h"
namespace openscreen {
namespace {
bool CompareSchemeComponent(std::string_view spec,
const url::Component& component,
std::string_view compare_to) { … }
}
Url::Url(const std::string& source) { … }
Url::Url(const Url&) = default;
Url::Url(Url&& other) noexcept
: … { … }
Url::~Url() = default;
Url& Url::operator=(const Url&) = default;
Url& Url::operator=(Url&& other) { … }
}