Skip to content

Commit b5037f2

Browse files
grgustaftaste1981
authored andcommitted
Correct some overreplacement of OWT string (open-webrtc-toolkit#265)
Signed-off-by: Geoff Gustafson <geoff@linux.intel.com>
1 parent cefe6c0 commit b5037f2

File tree

8 files changed

+11
-11
lines changed

8 files changed

+11
-11
lines changed

talk/owt/sdk/base/desktopcapturer.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
// Copyright (C) <2018> Intel Corporation
22
//
33
// SPDX-License-Identifier: Apache-2.0
4-
#ifndef OWT_BASE_BASOWTCREENCAPTURER_H_
5-
#define OWT_BASE_BASOWTCREENCAPTURER_H_
4+
#ifndef OWT_BASE_BASICSCREENCAPTURER_H_
5+
#define OWT_BASE_BASICSCREENCAPTURER_H_
66
#include <string>
77
#include <unordered_map>
88
#include <vector>
@@ -188,4 +188,4 @@ class BasicWindowCapturer : public BasicDesktopCapturer {
188188
};
189189
} // namespace base
190190
} // namespace owt
191-
#endif // OWT_BASE_BASOWTCREENCAPTURER_H_
191+
#endif // OWT_BASE_BASICSCREENCAPTURER_H_

talk/owt/sdk/base/functionalobserver.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ class FunctionalSetSessionDescriptionObserver
4848
std::function<void(const std::string& error)> on_failure_;
4949
};
5050
// A StatsObserver implementation used to invoke user defined function to
51-
// retrieve current statistowt data.
51+
// retrieve current statistics data.
5252
class FunctionalStatsObserver : public webrtc::StatsObserver {
5353
public:
5454
static rtc::scoped_refptr<FunctionalStatsObserver> Create(

talk/owt/sdk/conference/conferenceclient.cc

+2-2
Original file line numberDiff line numberDiff line change
@@ -758,7 +758,7 @@ void ConferenceClient::GetConnectionStats(
758758
});
759759
}
760760
RTC_LOG(LS_WARNING)
761-
<< "Tried to get connection statistowt from unknown stream.";
761+
<< "Tried to get connection statistics from unknown stream.";
762762
return;
763763
}
764764
pcc->GetConnectionStats(on_success, on_failure);
@@ -779,7 +779,7 @@ void ConferenceClient::GetStats(
779779
});
780780
}
781781
RTC_LOG(LS_WARNING)
782-
<< "Tried to get connection statistowt from unknown stream.";
782+
<< "Tried to get connection statistics from unknown stream.";
783783
return;
784784
}
785785
pcc->GetStats(on_success, on_failure);

talk/owt/sdk/conference/conferencepeerconnectionchannel.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ class ConferencePeerConnectionChannel
100100
std::string GetSessionId() const;
101101
// Socket.IO event
102102
virtual void OnSignalingMessage(sio::message::ptr message);
103-
// Get statistowt data for the specific stream.
103+
// Get statistics data for the specific stream.
104104
void GetConnectionStats(
105105
std::function<void(std::shared_ptr<ConnectionStats>)> on_success,
106106
std::function<void(std::unique_ptr<Exception>)> on_failure);

talk/owt/sdk/include/cpp/owt/base/connectionstats.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ typedef std::vector<IceCandidatePairPtr> IceCandidatePairReports;
206206
/// Connection statistoms
207207
struct ConnectionStats {
208208
ConnectionStats() {}
209-
/// Time stamp of connection statistowt generation
209+
/// Time stamp of connection statistics generation
210210
std::chrono::system_clock::time_point time_stamp = std::chrono::system_clock::now();
211211
/// Video bandwidth statistoms
212212
VideoBandwidthStats video_bandwidth_stats;

talk/owt/sdk/include/cpp/owt/p2p/p2pclient.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ class P2PClient final
173173
std::function<void()> on_success,
174174
std::function<void(std::unique_ptr<Exception>)> on_failure);
175175
/**
176-
@brief Get the connection statistowt with target client.
176+
@brief Get the connection statistics with target client.
177177
@param target_id Remote user's ID.
178178
@param on_success Success callback will be invoked if get statistoms
179179
information successes.

talk/owt/sdk/include/objc/OWT/OWTP2PClient.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ RTC_OBJC_EXPORT
8787
onSuccess:(nullable void (^)(OWTP2PPublication*))onSuccess
8888
onFailure:(nullable void (^)(NSError*))onFailure;
8989
/**
90-
@brief Get the connection statistowt with target client.
90+
@brief Get the connection statistics with target client.
9191
@param targetId Remote user's ID.
9292
@param onSuccess Success callback will be invoked if get statistoms
9393
information successes.

talk/owt/sdk/p2p/p2ppeerconnectionchannel.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ class P2PPeerConnectionChannel : public P2PSignalingReceiverInterface,
8181
// Stop current WebRTC session.
8282
void Stop(std::function<void()> on_success,
8383
std::function<void(std::unique_ptr<Exception>)> on_failure);
84-
// Get statistowt data for the specific connection.
84+
// Get statistics data for the specific connection.
8585
void GetConnectionStats(
8686
std::function<void(std::shared_ptr<ConnectionStats>)> on_success,
8787
std::function<void(std::unique_ptr<Exception>)> on_failure);

0 commit comments

Comments
 (0)