| OLD | NEW |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "components/ukm/public/mojo_ukm_recorder.h" | 5 #include "components/ukm/public/mojo_ukm_recorder.h" |
| 6 | 6 |
| 7 #include "base/memory/ptr_util.h" | 7 #include <utility> |
| 8 | 8 |
| 9 namespace ukm { | 9 namespace ukm { |
| 10 | 10 |
| 11 MojoUkmRecorder::MojoUkmRecorder(mojom::UkmRecorderInterfacePtr interface) | 11 MojoUkmRecorder::MojoUkmRecorder(mojom::UkmRecorderInterfacePtr interface) |
| 12 : interface_(std::move(interface)) {} | 12 : interface_(std::move(interface)) {} |
| 13 MojoUkmRecorder::~MojoUkmRecorder() = default; | 13 MojoUkmRecorder::~MojoUkmRecorder() = default; |
| 14 | 14 |
| 15 void MojoUkmRecorder::UpdateSourceURL(SourceId source_id, const GURL& url) { | 15 void MojoUkmRecorder::UpdateSourceURL(SourceId source_id, const GURL& url) { |
| 16 interface_->UpdateSourceURL(source_id, url.spec()); | 16 interface_->UpdateSourceURL(source_id, url.spec()); |
| 17 } | 17 } |
| 18 | 18 |
| 19 void MojoUkmRecorder::AddEntry(mojom::UkmEntryPtr entry) { | 19 void MojoUkmRecorder::AddEntry(mojom::UkmEntryPtr entry) { |
| 20 interface_->AddEntry(std::move(entry)); | 20 interface_->AddEntry(std::move(entry)); |
| 21 } | 21 } |
| 22 | 22 |
| 23 } // namespace ukm | 23 } // namespace ukm |
| OLD | NEW |