HomeSort by relevance Sort by last modified time
    Searched refs:MessagePumpMojo (Results 1 - 8 of 8) sorted by null

  /external/chromium_org/mojo/common/
message_pump_mojo_unittest.cc 15 return scoped_ptr<base::MessagePump>(new MessagePumpMojo());
message_pump_mojo.cc 22 base::LazyInstance<base::ThreadLocalPointer<MessagePumpMojo> >::Leaky
40 struct MessagePumpMojo::WaitState {
45 struct MessagePumpMojo::RunState {
59 MessagePumpMojo::MessagePumpMojo() : run_state_(NULL), next_handler_id_(0) {
61 << "There is already a MessagePumpMojo instance on this thread.";
65 MessagePumpMojo::~MessagePumpMojo() {
71 scoped_ptr<base::MessagePump> MessagePumpMojo::Create() {
72 return scoped_ptr<MessagePump>(new MessagePumpMojo());
    [all...]
message_pump_mojo.h 23 class MOJO_COMMON_EXPORT MessagePumpMojo : public base::MessagePump {
25 MessagePumpMojo();
26 virtual ~MessagePumpMojo();
32 // Returns the MessagePumpMojo instance of the current thread, if it exists.
33 static MessagePumpMojo* current();
65 // See description of |MessagePumpMojo::next_handler_id_| for details.
107 DISALLOW_COPY_AND_ASSIGN(MessagePumpMojo);
handle_watcher.cc 59 // MessagePumpMojo. All access (outside of creation/destruction) is done on the
103 MessagePumpMojo::current()->AddHandler(this, data.handle,
114 MessagePumpMojo::current()->RemoveHandler(handle);
125 MessagePumpMojo::current()->RemoveHandler(handle);
309 thread_options.message_pump_factory = base::Bind(&MessagePumpMojo::Create);
362 // If the thread on which HandleWatcher is used runs MessagePumpMojo,
375 DCHECK(MessagePumpMojo::IsCurrent());
377 MessagePumpMojo::current()->AddHandler(
383 MessagePumpMojo::current()->RemoveHandler(handle_);
398 MessagePumpMojo::current()->RemoveHandler(handle_)
    [all...]
handle_watcher_unittest.cc 56 loop.reset(new base::MessageLoop(MessagePumpMojo::Create()));
448 base::Bind(&MessagePumpMojo::Create);
  /external/chromium_org/mojo/shell/
child_process_host_unittest.cc 39 scoped_ptr<base::MessagePump>(new common::MessagePumpMojo()));
app_child_process.cc 112 base::Bind(&common::MessagePumpMojo::Create);
  /external/chromium_org/mojo/application/
application_runner_chromium.cc 51 loop.reset(new base::MessageLoop(common::MessagePumpMojo::Create()));

Completed in 4381 milliseconds