Lines Matching refs:Options
42 const Thread::Options& options;
47 explicit StartupData(const Options& opt)
48 : options(opt),
72 Options options;
75 options.message_loop_type = MessageLoop::TYPE_UI;
77 return StartWithOptions(options);
80 bool Thread::StartWithOptions(const Options& options) {
84 (options.message_loop_type == MessageLoop::TYPE_UI));
89 StartupData startup_data(options);
92 if (!PlatformThread::Create(options.stack_size, this, &thread_)) {
176 MessageLoop message_loop(startup_data_->options.message_loop_type);