Format TODO URLs as TODO(crbug.com/openscreen/000)
Put crbug URLs in TODOs to make it easier to open the bug pages.
Change-Id: Ibc8fce98a795d7e8c714627bf1ecd970a3865563
Reviewed-on: https://chromium-review.googlesource.com/c/openscreen/+/1872176
Reviewed-by: Max Yakimakha <yakimakha@chromium.org>
Commit-Queue: Takumi Fujimoto <takumif@chromium.org>
diff --git a/platform/api/udp_socket.cc b/platform/api/udp_socket.cc
index 263d300..3c75b18 100644
--- a/platform/api/udp_socket.cc
+++ b/platform/api/udp_socket.cc
@@ -38,7 +38,7 @@
}
task_runner_->PostTask([e = std::move(error), this]() mutable {
- // TODO(issues/71): |this| may be invalid at this point.
+ // TODO(crbug.com/openscreen/71): |this| may be invalid at this point.
this->client_->OnError(this, std::move(e));
});
}
@@ -49,7 +49,7 @@
}
task_runner_->PostTask([e = std::move(error), this]() mutable {
- // TODO(issues/71): |this| may be invalid at this point.
+ // TODO(crbug.com/openscreen/71): |this| may be invalid at this point.
this->client_->OnSendError(this, std::move(e));
});
}
@@ -60,7 +60,7 @@
}
task_runner_->PostTask([data = std::move(read_data), this]() mutable {
- // TODO(issues/71): |this| may be invalid at this point.
+ // TODO(crbug.com/openscreen/71): |this| may be invalid at this point.
this->client_->OnRead(this, std::move(data));
});
}