Commit eef8180c authored by Robert Sesek's avatar Robert Sesek Committed by Commit Bot

Fix some issues in mojo::ServiceFactory class comments.

Change-Id: I8fcc58fb170a55c0e4afeedf401474ce63273093
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1742613
Auto-Submit: Robert Sesek <rsesek@chromium.org>
Reviewed-by: default avatarKen Rockot <rockot@google.com>
Commit-Queue: Ken Rockot <rockot@google.com>
Cr-Commit-Position: refs/heads/master@{#685258}
parent 43e23900
...@@ -47,8 +47,8 @@ struct ServiceFactoryTraits; ...@@ -47,8 +47,8 @@ struct ServiceFactoryTraits;
// return std::make_unique<foo::FooImpl>(std::move(receiver)); // return std::make_unique<foo::FooImpl>(std::move(receiver));
// } // }
// //
// auto RunFooService(mojo::PendingReceiver<foo::mojom::Foo> receiver) { // auto RunBarService(mojo::PendingReceiver<bar::mojom::Bar> receiver) {
// return std::make_unique<foo::FooImpl>(std::move(receiver)); // return std::make_unique<bar::BarImpl>(std::move(receiver));
// } // }
// //
// void HandleServiceRequest(mojo::GenericPendingReceiver receiver) { // void HandleServiceRequest(mojo::GenericPendingReceiver receiver) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment