| Index: services/shell/public/cpp/lib/capabilities.cc
|
| diff --git a/services/shell/public/cpp/lib/capabilities.cc b/services/shell/public/cpp/lib/capabilities.cc
|
| deleted file mode 100644
|
| index d16035513cfabf998c387dfeb534d162ece5bbbd..0000000000000000000000000000000000000000
|
| --- a/services/shell/public/cpp/lib/capabilities.cc
|
| +++ /dev/null
|
| @@ -1,24 +0,0 @@
|
| -// Copyright 2016 The Chromium 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 "services/shell/public/cpp/capabilities.h"
|
| -
|
| -#include <tuple>
|
| -
|
| -namespace shell {
|
| -
|
| -CapabilitySpec::CapabilitySpec() {}
|
| -CapabilitySpec::CapabilitySpec(const CapabilitySpec& other) = default;
|
| -CapabilitySpec::~CapabilitySpec() {}
|
| -
|
| -bool CapabilitySpec::operator==(const CapabilitySpec& other) const {
|
| - return other.provided == provided && other.required == required;
|
| -}
|
| -
|
| -bool CapabilitySpec::operator<(const CapabilitySpec& other) const {
|
| - return std::tie(provided, required) <
|
| - std::tie(other.provided, other.required);
|
| -}
|
| -
|
| -} // namespace shell
|
|
|