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

  /external/chromium_org/remoting/host/setup/
native_messaging_host.cc 55 NativeMessagingHost::NativeMessagingHost(
72 NativeMessagingHost::~NativeMessagingHost() {}
74 void NativeMessagingHost::Start() {
78 base::Bind(&NativeMessagingHost::ProcessMessage, weak_ptr_),
79 base::Bind(&NativeMessagingHost::Shutdown, weak_ptr_));
82 void NativeMessagingHost::Shutdown() {
90 void NativeMessagingHost::ProcessMessage(scoped_ptr<base::Value> message) {
156 bool NativeMessagingHost::ProcessHello
    [all...]
native_messaging_host.h 31 class NativeMessagingHost {
33 NativeMessagingHost(
40 ~NativeMessagingHost();
108 base::WeakPtr<NativeMessagingHost> weak_ptr_;
124 base::WeakPtrFactory<NativeMessagingHost> weak_factory_;
126 DISALLOW_COPY_AND_ASSIGN(NativeMessagingHost);
129 // Creates a NativeMessagingHost instance, attaches it to stdin/stdout and runs
130 // the message loop until NativeMessagingHost signals shutdown.
native_messaging_host_unittest.cc 204 // Unused - NativeMessagingHost returns the compiled-in version string
241 // NativeMessagingHost reads from input_read_handle and writes to
245 // unittest -> [input] -> NativeMessagingHost -> [output] -> unittest
253 scoped_ptr<remoting::NativeMessagingHost> host_;
274 host_.reset(new NativeMessagingHost(daemon_controller.Pass(),
282 // The NativeMessagingHost dtor closes the handles that are passed to it.
437 // This detects cases where NativeMessagingHost might call a wrong method

Completed in 381 milliseconds