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

Side by Side Diff: chrome/browser/sync_file_system/drive_backend/callback_helper_unittest.cc

Issue 506793002: Remove implicit conversions from scoped_refptr to T* in chrome/browser/sync_file_system/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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 "chrome/browser/sync_file_system/drive_backend/callback_helper.h" 5 #include "chrome/browser/sync_file_system/drive_backend/callback_helper.h"
6 6
7 #include "base/message_loop/message_loop.h" 7 #include "base/message_loop/message_loop.h"
8 #include "base/run_loop.h" 8 #include "base/run_loop.h"
9 #include "base/thread_task_runner_handle.h" 9 #include "base/thread_task_runner_handle.h"
10 #include "base/threading/thread.h" 10 #include "base/threading/thread.h"
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner = 68 scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner =
69 base::ThreadTaskRunnerHandle::Get(); 69 base::ThreadTaskRunnerHandle::Get();
70 scoped_refptr<base::SequencedTaskRunner> worker_task_runner = 70 scoped_refptr<base::SequencedTaskRunner> worker_task_runner =
71 thread.message_loop_proxy(); 71 thread.message_loop_proxy();
72 72
73 bool called = false; 73 bool called = false;
74 base::RunLoop run_loop; 74 base::RunLoop run_loop;
75 worker_task_runner->PostTask( 75 worker_task_runner->PostTask(
76 FROM_HERE, 76 FROM_HERE,
77 RelayCallbackToTaskRunner( 77 RelayCallbackToTaskRunner(
78 ui_task_runner, FROM_HERE, 78 ui_task_runner.get(),
79 base::Bind(&VerifyCalledOnTaskRunner, 79 FROM_HERE,
80 ui_task_runner, &called))); 80 base::Bind(&VerifyCalledOnTaskRunner, ui_task_runner, &called)));
81 worker_task_runner->PostTask( 81 worker_task_runner->PostTask(
82 FROM_HERE, 82 FROM_HERE,
83 RelayCallbackToTaskRunner( 83 RelayCallbackToTaskRunner(
84 ui_task_runner, FROM_HERE, 84 ui_task_runner.get(), FROM_HERE, run_loop.QuitClosure()));
85 run_loop.QuitClosure()));
86 run_loop.Run(); 85 run_loop.Run();
87 EXPECT_TRUE(called); 86 EXPECT_TRUE(called);
88 87
89 thread.Stop(); 88 thread.Stop();
90 base::RunLoop().RunUntilIdle(); 89 base::RunLoop().RunUntilIdle();
91 } 90 }
92 91
93 TEST(DriveBackendCallbackHelperTest, PassNullFunctionTest) { 92 TEST(DriveBackendCallbackHelperTest, PassNullFunctionTest) {
94 base::MessageLoop message_loop; 93 base::MessageLoop message_loop;
95 base::Closure closure = RelayCallbackToCurrentThread( 94 base::Closure closure = RelayCallbackToCurrentThread(
96 FROM_HERE, 95 FROM_HERE,
97 base::Closure()); 96 base::Closure());
98 EXPECT_TRUE(closure.is_null()); 97 EXPECT_TRUE(closure.is_null());
99 } 98 }
100 99
101 } // namespace drive_backend 100 } // namespace drive_backend
102 } // namespace sync_file_system 101 } // namespace sync_file_system
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698