chromium/remoting/client/notification/version_range.cc

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

#include "remoting/client/notification/version_range.h"

#include <stdint.h>

#include <limits>

#include "base/check_op.h"
#include "base/logging.h"

namespace remoting {

namespace {

constexpr uint16_t kUnboundMinVersionNumber =;
constexpr uint16_t kUnboundMaxVersionNumber =;

}  // namespace

VersionRange::VersionRange(const std::string& range_spec) {}

VersionRange::~VersionRange() = default;

bool VersionRange::IsValid() const {}

bool VersionRange::ContainsVersion(const std::string& version_string) const {}

}  // namespace remoting