summaryrefslogtreecommitdiff
path: root/chromium/third_party/nearby/src/cpp/core/internal/mediums/webrtc_peer_id.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/nearby/src/cpp/core/internal/mediums/webrtc_peer_id.h')
-rw-r--r--chromium/third_party/nearby/src/cpp/core/internal/mediums/webrtc_peer_id.h52
1 files changed, 0 insertions, 52 deletions
diff --git a/chromium/third_party/nearby/src/cpp/core/internal/mediums/webrtc_peer_id.h b/chromium/third_party/nearby/src/cpp/core/internal/mediums/webrtc_peer_id.h
deleted file mode 100644
index d2331b5a0d9..00000000000
--- a/chromium/third_party/nearby/src/cpp/core/internal/mediums/webrtc_peer_id.h
+++ /dev/null
@@ -1,52 +0,0 @@
-// Copyright 2020 Google LLC
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-// https://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-
-#ifndef CORE_INTERNAL_MEDIUMS_WEBRTC_PEER_ID_H_
-#define CORE_INTERNAL_MEDIUMS_WEBRTC_PEER_ID_H_
-
-#include <memory>
-#include <string>
-
-#include "platform/base/byte_array.h"
-
-namespace location {
-namespace nearby {
-namespace connections {
-namespace mediums {
-
-// WebrtcPeerId is used as an identifier to exchange SDP messages to establish
-// WebRTC p2p connection. An empty WebrtcPeerId is considered to be invalid.
-class WebrtcPeerId {
- public:
- WebrtcPeerId() = default;
- explicit WebrtcPeerId(const std::string& id) : id_(id) {}
- ~WebrtcPeerId() = default;
-
- static WebrtcPeerId FromRandom();
- static WebrtcPeerId FromSeed(const ByteArray& seed);
-
- bool IsValid() const;
-
- const std::string& GetId() const { return id_; }
-
- private:
- std::string id_;
-};
-
-} // namespace mediums
-} // namespace connections
-} // namespace nearby
-} // namespace location
-
-#endif // CORE_INTERNAL_MEDIUMS_WEBRTC_PEER_ID_H_