| Index: components/copresence/rpc/http_post.h
|
| diff --git a/components/copresence/rpc/http_post.h b/components/copresence/rpc/http_post.h
|
| index f324b69066d76d5b51739de7169bbc885e6b34ba..83a39c01cfd24d5507d6f87209710f6a552f531d 100644
|
| --- a/components/copresence/rpc/http_post.h
|
| +++ b/components/copresence/rpc/http_post.h
|
| @@ -47,7 +47,7 @@ class HttpPost : public net::URLFetcherDelegate {
|
| const google::protobuf::MessageLite& request_proto);
|
|
|
| // HTTP requests are cancelled on delete.
|
| - virtual ~HttpPost();
|
| + ~HttpPost() override;
|
|
|
| // Send an HttpPost request.
|
| void Start(const ResponseCallback& response_callback);
|
| @@ -60,7 +60,7 @@ class HttpPost : public net::URLFetcherDelegate {
|
| friend class HttpPostTest;
|
|
|
| // Overridden from net::URLFetcherDelegate.
|
| - virtual void OnURLFetchComplete(const net::URLFetcher* source) override;
|
| + void OnURLFetchComplete(const net::URLFetcher* source) override;
|
|
|
| ResponseCallback response_callback_;
|
|
|
|
|