Fix const correctness.

Bug: b/238157120
Change-Id: I2887b5be48d841c9ff915d669fb623b77f1e21d1
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/270481
Reviewed-by: Danil Chapovalov <danilchap@webrtc.org>
Commit-Queue: Mirko Bonadei <mbonadei@webrtc.org>
Cr-Commit-Position: refs/heads/main@{#37679}
This commit is contained in:
Mirko Bonadei 2022-08-03 13:18:30 +00:00 committed by WebRTC LUCI CQ
parent 07eaddf939
commit 73f0c21640

View File

@ -111,12 +111,12 @@ class LogMessage;
// the most flexible way. // the most flexible way.
class LogLineRef { class LogLineRef {
public: public:
absl::string_view message() { return message_; } absl::string_view message() const { return message_; }
absl::string_view filename() { return filename_; }; absl::string_view filename() const { return filename_; }
int line() { return line_; }; int line() const { return line_; }
absl::optional<PlatformThreadId> thread_id() { return thread_id_; }; absl::optional<PlatformThreadId> thread_id() const { return thread_id_; }
webrtc::Timestamp timestamp() { return timestamp_; }; webrtc::Timestamp timestamp() const { return timestamp_; }
absl::string_view tag() const { return tag_; }; absl::string_view tag() const { return tag_; }
LoggingSeverity severity() const { return severity_; } LoggingSeverity severity() const { return severity_; }
std::string DefaultLogLine() const; std::string DefaultLogLine() const;