Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(66)

Side by Side Diff: sync/internal_api/attachments/fake_attachment_downloader.cc

Issue 2130453004: [Sync] Move //sync to //components/sync. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "sync/internal_api/public/attachments/fake_attachment_downloader.h"
6
7 #include "base/bind.h"
8 #include "base/location.h"
9 #include "base/single_thread_task_runner.h"
10 #include "base/threading/thread_task_runner_handle.h"
11 #include "sync/internal_api/public/attachments/attachment_util.h"
12
13 namespace syncer {
14
15 FakeAttachmentDownloader::FakeAttachmentDownloader() {
16 }
17
18 FakeAttachmentDownloader::~FakeAttachmentDownloader() {
19 DCHECK(CalledOnValidThread());
20 }
21
22 void FakeAttachmentDownloader::DownloadAttachment(
23 const AttachmentId& attachment_id,
24 const DownloadCallback& callback) {
25 DCHECK(CalledOnValidThread());
26 // This is happy fake downloader, it always successfully downloads empty
27 // attachment.
28 scoped_refptr<base::RefCountedMemory> data(new base::RefCountedBytes());
29 std::unique_ptr<Attachment> attachment;
30 attachment.reset(
31 new Attachment(Attachment::CreateFromParts(attachment_id, data)));
32 base::ThreadTaskRunnerHandle::Get()->PostTask(
33 FROM_HERE,
34 base::Bind(callback, DOWNLOAD_SUCCESS, base::Passed(&attachment)));
35 }
36
37 } // namespace syncer
OLDNEW
« no previous file with comments | « sync/internal_api/attachments/attachment_util.cc ('k') | sync/internal_api/attachments/fake_attachment_downloader_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698