Searched refs:run_loop_ (Results 1 - 25 of 113) sorted by relevance

12345

/external/chromium_org/content/public/test/
H A Dframe_load_waiter.cc18 run_loop_.Run();
24 base::MessageLoop::current()->PostTask(FROM_HERE, run_loop_.QuitClosure());
H A Dframe_load_waiter.h25 base::RunLoop run_loop_; member in class:content::FrameLoadWaiter
/external/chromium_org/components/gcm_driver/
H A Dfake_gcm_app_handler.cc19 run_loop_.reset(new base::RunLoop);
20 run_loop_->Run();
21 run_loop_.reset();
33 if (run_loop_)
34 run_loop_->Quit();
41 if (run_loop_)
42 run_loop_->Quit();
52 if (run_loop_)
53 run_loop_->Quit();
62 if (run_loop_)
[all...]
/external/chromium_org/chrome/browser/chromeos/file_manager/
H A Ddrive_test_util.cc31 // Note that it is OK for |run_loop_.Quit| to be called before
32 // |run_loop_.Run|. In this case |Run| will return immediately.
33 run_loop_.Quit();
38 run_loop_.Run();
43 base::RunLoop run_loop_; member in class:file_manager::test_util::__anon3162::DriveMountPointWaiter
/external/chromium_org/chrome/browser/chromeos/login/test/
H A Dapp_window_waiter.cc26 run_loop_.Run();
32 if (!run_loop_.running())
37 run_loop_.Quit();
/external/chromium_org/chrome/browser/copresence/
H A Dchrome_whispernet_client_browsertest.cc58 run_loop_.reset(new base::RunLoop());
61 run_loop_->Run();
70 run_loop_.reset(new base::RunLoop());
77 run_loop_->Run();
86 run_loop_.reset(new base::RunLoop());
106 run_loop_->Run();
113 run_loop_.reset(new base::RunLoop());
118 run_loop_->Run();
125 ASSERT_TRUE(run_loop_);
126 run_loop_
155 scoped_ptr<base::RunLoop> run_loop_; member in class:ChromeWhispernetClientTest
[all...]
/external/chromium_org/sync/internal_api/
H A Dsync_context_proxy_impl_unittest.cc65 base::RunLoop run_loop_; local
66 run_loop_.RunUntilIdle();
76 base::RunLoop run_loop_; local
77 run_loop_.RunUntilIdle();
87 base::RunLoop run_loop_; local
88 run_loop_.RunUntilIdle();
100 base::RunLoop run_loop_; local
101 run_loop_.RunUntilIdle();
/external/chromium_org/dbus/
H A Dsignal_sender_verification_unittest.cc69 run_loop_.reset(new base::RunLoop);
70 run_loop_->Run();
91 run_loop_.reset(new base::RunLoop);
92 run_loop_->Run();
124 run_loop_->Quit();
132 run_loop_->Quit();
140 run_loop_->Quit();
148 run_loop_->Quit();
155 run_loop_.reset(new base::RunLoop);
156 run_loop_
168 scoped_ptr<base::RunLoop> run_loop_; member in class:dbus::SignalSenderVerificationTest
[all...]
H A Dend_to_end_async_unittest.cc81 run_loop_.reset(new base::RunLoop());
82 run_loop_->Run();
97 run_loop_.reset(new base::RunLoop());
98 run_loop_->Run();
115 run_loop_.reset(new base::RunLoop());
116 run_loop_->Run();
179 run_loop_.reset(new base::RunLoop);
180 run_loop_->Run();
196 run_loop_->Quit();
202 run_loop_
265 scoped_ptr<base::RunLoop> run_loop_; member in class:dbus::EndToEndAsyncTest
[all...]
H A Dobject_manager_unittest.cc114 run_loop_->Quit();
122 run_loop_->Quit();
132 run_loop_->Quit();
139 run_loop_->Quit();
156 run_loop_->Quit();
165 run_loop_.reset(new base::RunLoop);
166 run_loop_->Run();
176 run_loop_.reset(new base::RunLoop);
177 run_loop_->Run();
184 run_loop_
207 scoped_ptr<base::RunLoop> run_loop_; member in class:dbus::ObjectManagerTest
[all...]
/external/chromium_org/base/message_loop/
H A Dmessage_pump_android.cc87 : run_loop_(NULL) {
99 run_loop_ = new RunLoop();
102 if (!run_loop_->BeforeRun())
125 if (run_loop_) {
126 run_loop_->AfterRun();
127 delete run_loop_;
128 run_loop_ = NULL;
/external/chromium_org/base/
H A Drun_loop.cc67 if (running_ && loop_->run_loop_ == this) {
86 previous_run_loop_ = loop_->run_loop_;
88 loop_->run_loop_ = this;
98 loop_->run_loop_ = previous_run_loop_;
/external/chromium_org/chrome/browser/ui/app_list/search/people/
H A Dpeople_provider_browsertest.cc198 DCHECK(!run_loop_);
199 run_loop_.reset(new base::RunLoop);
200 run_loop_->Run();
201 run_loop_.reset();
235 if (run_loop_)
236 run_loop_->Quit();
240 scoped_ptr<base::RunLoop> run_loop_; member in class:app_list::test::PeopleProviderTest
/external/chromium_org/content/browser/webui/
H A Dweb_ui_mojo_browsertest.cc65 explicit BrowserTargetImpl(base::RunLoop* run_loop) : run_loop_(run_loop) {}
75 base::RunLoop* run_loop_; member in class:content::__anon7474::BrowserTargetImpl
96 run_loop_->Quit();
108 run_loop_(run_loop) {
116 base::RunLoop* run_loop_; member in class:content::__anon7474::TestWebUIController
141 new PingBrowserTargetImpl(run_loop_), &request));
151 TestWebUIControllerFactory() : run_loop_(NULL) {}
153 void set_run_loop(base::RunLoop* run_loop) { run_loop_ = run_loop; }
158 return new PingTestWebUIController(web_ui, run_loop_);
175 base::RunLoop* run_loop_; member in class:content::__anon7474::TestWebUIControllerFactory
[all...]
/external/chromium_org/mojo/public/cpp/utility/tests/
H A Drun_loop_unittest.cc77 RemoveOnReadyRunLoopHandler() : run_loop_(NULL) {
81 void set_run_loop(RunLoop* run_loop) { run_loop_ = run_loop; }
85 run_loop_->RemoveHandler(handle);
90 RunLoop* run_loop_; member in class:mojo::__anon8799::RemoveOnReadyRunLoopHandler
113 QuitOnReadyRunLoopHandler() : run_loop_(NULL) {
117 void set_run_loop(RunLoop* run_loop) { run_loop_ = run_loop; }
121 run_loop_->Quit();
126 RunLoop* run_loop_; member in class:mojo::__anon8799::QuitOnReadyRunLoopHandler
149 QuitOnErrorRunLoopHandler() : run_loop_(NULL) {
153 void set_run_loop(RunLoop* run_loop) { run_loop_
163 RunLoop* run_loop_; member in class:mojo::__anon8799::QuitOnErrorRunLoopHandler
218 RunLoop* run_loop_; member in class:mojo::__anon8799::RemoveManyRunLoopHandler
270 RunLoop* run_loop_; member in class:mojo::__anon8799::AddHandlerOnErrorHandler
363 RunLoop* run_loop_; member in class:mojo::__anon8799::NestingRunLoopHandler
[all...]
/external/chromium_org/chrome/browser/extensions/api/messaging/
H A Dnative_message_process_host_unittest.cc132 if (run_loop_)
133 run_loop_->Quit();
139 if (run_loop_)
140 run_loop_->Quit();
168 scoped_ptr<base::RunLoop> run_loop_; member in class:extensions::NativeMessagingTest
187 run_loop_.reset(new base::RunLoop());
188 run_loop_->RunUntilIdle();
191 run_loop_.reset(new base::RunLoop());
193 run_loop_->Run();
262 run_loop_
[all...]
/external/chromium_org/chrome/browser/local_discovery/
H A Dprivetv3_session_unittest.cc48 quit_closure_ = run_loop_.QuitClosure();
56 base::RunLoop run_loop_; member in class:local_discovery::__anon4179::PrivetV3SessionTest
64 run_loop_.Run();
75 run_loop_.Run();
/external/chromium_org/remoting/host/
H A Dconfig_file_watcher_unittest.cc53 base::RunLoop run_loop_; member in class:remoting::ConfigFileWatcherTest
79 message_loop_.message_loop_proxy(), run_loop_.QuitClosure());
109 run_loop_.Run();
131 run_loop_.Run();
H A Dlocal_input_monitor_unittest.cc42 base::RunLoop run_loop_; member in class:remoting::LocalInputMonitorTest
59 message_loop_.message_loop_proxy(), run_loop_.QuitClosure());
86 run_loop_.Run();
/external/chromium_org/chrome/browser/chromeos/login/users/avatar/
H A Duser_image_manager_test_util.cc61 run_loop_.Run();
69 run_loop_.Quit();
73 run_loop_.Quit();
/external/chromium_org/chrome/browser/ui/app_list/test/
H A Dchrome_app_list_test_support.cc34 run_loop_.Run();
42 run_loop_.Quit();
46 base::RunLoop run_loop_; member in class:test::__anon4972::CreateProfileHelper
/external/chromium_org/chrome/browser/chromeos/net/
H A Dnetwork_portal_detector_impl_browsertest.cc60 TestObserver() : run_loop_(new base::RunLoop()) {
69 run_loop_->Run();
70 run_loop_.reset(new base::RunLoop());
78 MessageLoop::current()->PostTask(FROM_HERE, run_loop_->QuitClosure());
84 MessageLoop::current()->PostTask(FROM_HERE, run_loop_->QuitClosure());
88 scoped_ptr<base::RunLoop> run_loop_; member in class:chromeos::__anon3374::TestObserver
/external/chromium_org/chrome/browser/ui/app_list/search/
H A Dhistory_data_store_unittest.cc70 run_loop_.reset(new base::RunLoop);
71 run_loop_->Run();
72 run_loop_.reset();
92 if (run_loop_)
93 run_loop_->Quit();
100 scoped_ptr<base::RunLoop> run_loop_; member in class:app_list::test::HistoryDataStoreTest
/external/chromium_org/content/browser/renderer_host/media/
H A Dmedia_stream_manager_unittest.cc96 message_loop_->PostTask(FROM_HERE, run_loop_.QuitClosure());
121 base::RunLoop run_loop_; member in class:content::MediaStreamManagerTest
132 run_loop_.Run();
139 run_loop_.RunUntilIdle();
169 run_loop_.Run();
180 run_loop_.Run();
/external/chromium_org/remoting/signaling/
H A Dlog_to_server_unittest.cc51 base::RunLoop run_loop_; member in class:remoting::LogToServerTest
79 run_loop_.RunUntilIdle();
90 run_loop_.RunUntilIdle();

Completed in 497 milliseconds

12345