PiperOrigin-RevId: 919310819
This commit is contained in:
Francis Tsui
2026-05-21 16:23:02 -07:00
committed by Copybara-Service
parent 5df1af7c61
commit 5ed4488cf5
5 changed files with 8 additions and 9 deletions
-2
View File
@@ -31,7 +31,6 @@ cc_library(
"bluetooth_endpoint_channel.cc",
"bluetooth_radio.cc",
"mediums.cc",
"webrtc_endpoint_channel.cc",
"wifi_direct.cc",
"wifi_direct_bwu_handler.cc",
"wifi_direct_endpoint_channel.cc",
@@ -54,7 +53,6 @@ cc_library(
"bluetooth_endpoint_channel.h",
"bluetooth_radio.h",
"mediums.h",
"webrtc_endpoint_channel.h",
"wifi.h",
"wifi_direct.h",
"wifi_direct_bwu_handler.h",
@@ -104,10 +104,12 @@ cc_library(
name = "webrtc_impl",
srcs = [
"webrtc_bwu_handler.cc",
"webrtc_endpoint_channel.cc",
"webrtc_impl.cc",
],
hdrs = [
"webrtc_bwu_handler.h",
"webrtc_endpoint_channel.h",
"webrtc_impl.h",
],
visibility = [
@@ -123,7 +125,6 @@ cc_library(
"//connections/implementation:client_proxy",
"//connections/implementation:endpoint_channel",
"//connections/implementation:offline_frames",
"//connections/implementation/mediums",
"//connections/implementation/mediums:webrtc",
"//connections/implementation/mediums:webrtc_peer_id",
"//connections/implementation/mediums:webrtc_socket",
@@ -18,13 +18,13 @@
#include <string>
#include <utility>
#include "absl/base/nullability.h"
#include "absl/functional/bind_front.h"
#include "connections/implementation/base_bwu_handler.h"
#include "connections/implementation/client_proxy.h"
#include "connections/implementation/endpoint_channel.h"
#include "absl/base/nullability.h"
#include "connections/implementation/mediums/webrtc.h"
#include "connections/implementation/mediums/webrtc_endpoint_channel.h"
#include "connections/implementation/mediums/webrtc/webrtc_endpoint_channel.h"
#include "connections/implementation/mediums/webrtc_peer_id.h"
#include "connections/implementation/mediums/webrtc_socket.h"
#include "connections/implementation/offline_frames.h"
@@ -12,7 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#include "connections/implementation/mediums/webrtc_endpoint_channel.h"
#include "connections/implementation/mediums/webrtc/webrtc_endpoint_channel.h"
#include <memory>
#include <string>
@@ -12,8 +12,8 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef CORE_INTERNAL_MEDIUMS_WEBRTC_ENDPOINT_CHANNEL_H_
#define CORE_INTERNAL_MEDIUMS_WEBRTC_ENDPOINT_CHANNEL_H_
#ifndef CORE_INTERNAL_MEDIUMS_WEBRTC_WEBRTC_ENDPOINT_CHANNEL_H_
#define CORE_INTERNAL_MEDIUMS_WEBRTC_WEBRTC_ENDPOINT_CHANNEL_H_
#include <memory>
#include <string>
@@ -41,4 +41,4 @@ class WebRtcEndpointChannel final : public BaseEndpointChannel {
} // namespace connections
} // namespace nearby
#endif // CORE_INTERNAL_MEDIUMS_WEBRTC_ENDPOINT_CHANNEL_H_
#endif // CORE_INTERNAL_MEDIUMS_WEBRTC_WEBRTC_ENDPOINT_CHANNEL_H_