Commit f9a78426 authored by Luis Hector Chavez's avatar Luis Hector Chavez Committed by Commit Bot

arc: Remove a stray 'explicit'

This change addresses a comment that was added just before committing.

Bug: None
Test: git cl try
Change-Id: If6d61b603b6fcaaad18ccaca795ba024c5e84c21
Reviewed-on: https://chromium-review.googlesource.com/804240Reviewed-by: default avatarYusuke Sato <yusukes@chromium.org>
Commit-Queue: Luis Hector Chavez <lhchavez@chromium.org>
Cr-Commit-Position: refs/heads/master@{#521086}
parent 97537191
...@@ -21,8 +21,8 @@ template <typename InstanceType, typename HostType> ...@@ -21,8 +21,8 @@ template <typename InstanceType, typename HostType>
class ReadinessObserver class ReadinessObserver
: public ConnectionHolder<InstanceType, HostType>::Observer { : public ConnectionHolder<InstanceType, HostType>::Observer {
public: public:
explicit ReadinessObserver(ConnectionHolder<InstanceType, HostType>* holder, ReadinessObserver(ConnectionHolder<InstanceType, HostType>* holder,
base::OnceClosure closure) base::OnceClosure closure)
: holder_(holder), closure_(std::move(closure)) { : holder_(holder), closure_(std::move(closure)) {
holder_->AddObserver(this); holder_->AddObserver(this);
} }
......
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