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

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

Issue 915373002: Migrate sync/ to base::RunLoop::RunUntilIdle() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix build error Created 5 years, 9 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
1 // Copyright 2014 The Chromium Authors. All rights reserved. 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 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 "sync/internal_api/public/attachments/fake_attachment_uploader.h" 5 #include "sync/internal_api/public/attachments/fake_attachment_uploader.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/memory/ref_counted.h" 8 #include "base/memory/ref_counted.h"
9 #include "base/memory/ref_counted_memory.h" 9 #include "base/memory/ref_counted_memory.h"
10 #include "base/message_loop/message_loop.h" 10 #include "base/run_loop.h"
11 #include "sync/api/attachments/attachment.h" 11 #include "sync/api/attachments/attachment.h"
12 #include "testing/gtest/include/gtest/gtest.h" 12 #include "testing/gtest/include/gtest/gtest.h"
13 13
14 namespace syncer { 14 namespace syncer {
15 15
16 namespace { 16 namespace {
17 17
18 const char kAttachmentData[] = "some data"; 18 const char kAttachmentData[] = "some data";
19 19
20 } // namespace 20 } // namespace
(...skipping 25 matching lines...) Expand all
46 // invoked the same number of times with a result of SUCCESS. 46 // invoked the same number of times with a result of SUCCESS.
47 TEST_F(FakeAttachmentUploaderTest, UploadAttachment) { 47 TEST_F(FakeAttachmentUploaderTest, UploadAttachment) {
48 scoped_refptr<base::RefCountedString> some_data(new base::RefCountedString); 48 scoped_refptr<base::RefCountedString> some_data(new base::RefCountedString);
49 some_data->data() = kAttachmentData; 49 some_data->data() = kAttachmentData;
50 Attachment attachment1 = Attachment::Create(some_data); 50 Attachment attachment1 = Attachment::Create(some_data);
51 Attachment attachment2 = Attachment::Create(some_data); 51 Attachment attachment2 = Attachment::Create(some_data);
52 Attachment attachment3 = Attachment::Create(some_data); 52 Attachment attachment3 = Attachment::Create(some_data);
53 uploader.UploadAttachment(attachment1, upload_callback); 53 uploader.UploadAttachment(attachment1, upload_callback);
54 uploader.UploadAttachment(attachment2, upload_callback); 54 uploader.UploadAttachment(attachment2, upload_callback);
55 uploader.UploadAttachment(attachment3, upload_callback); 55 uploader.UploadAttachment(attachment3, upload_callback);
56 message_loop.RunUntilIdle(); 56 base::RunLoop().RunUntilIdle();
57 EXPECT_EQ(upload_callback_count, 3); 57 EXPECT_EQ(upload_callback_count, 3);
58 } 58 }
59 59
60 } // namespace syncer 60 } // namespace syncer
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698