| Index: components/sync/core_impl/attachments/attachment_service_proxy.cc
|
| diff --git a/components/sync/core_impl/attachments/attachment_service_proxy.cc b/components/sync/core_impl/attachments/attachment_service_proxy.cc
|
| index 0299f97c05878c358a14f03240f34eabcdcd196a..fb95d6b1ed2690f62d161104bc4bd417a3b47dfe 100644
|
| --- a/components/sync/core_impl/attachments/attachment_service_proxy.cc
|
| +++ b/components/sync/core_impl/attachments/attachment_service_proxy.cc
|
| @@ -32,7 +32,7 @@ AttachmentServiceProxy::AttachmentServiceProxy() {}
|
|
|
| AttachmentServiceProxy::AttachmentServiceProxy(
|
| const scoped_refptr<base::SequencedTaskRunner>& wrapped_task_runner,
|
| - const base::WeakPtr<syncer::AttachmentService>& wrapped)
|
| + const base::WeakPtr<AttachmentService>& wrapped)
|
| : wrapped_task_runner_(wrapped_task_runner), core_(new Core(wrapped)) {
|
| DCHECK(wrapped_task_runner_.get());
|
| }
|
| @@ -71,7 +71,7 @@ void AttachmentServiceProxy::UploadAttachments(
|
| }
|
|
|
| AttachmentServiceProxy::Core::Core(
|
| - const base::WeakPtr<syncer::AttachmentService>& wrapped)
|
| + const base::WeakPtr<AttachmentService>& wrapped)
|
| : wrapped_(wrapped) {}
|
|
|
| AttachmentServiceProxy::Core::~Core() {}
|
|
|