HomeSort by relevance Sort by last modified time
    Searched defs:ObjectWatcher (Results 1 - 2 of 2) sorted by null

  /external/chromium/base/
object_watcher.h 25 // class MyClass : public base::ObjectWatcher::Delegate {
34 // base::ObjectWatcher watcher_;
38 // signaled. ObjectWatcher makes this task easy. When MyClass goes out of
42 class ObjectWatcher : public MessageLoop::DestructionObserver {
52 ObjectWatcher();
53 ~ObjectWatcher();
56 // where StartWatching is called. The ObjectWatcher is not responsible for
86 DISALLOW_COPY_AND_ASSIGN(ObjectWatcher);
object_watcher.cc 13 struct ObjectWatcher::Watch : public Task {
14 ObjectWatcher* watcher; // The associated ObjectWatcher instance
36 ObjectWatcher::ObjectWatcher() : watch_(NULL) {
39 ObjectWatcher::~ObjectWatcher() {
43 bool ObjectWatcher::StartWatching(HANDLE object, Delegate* delegate) {
75 bool ObjectWatcher::StopWatching() {
79 // Make sure ObjectWatcher is used in a single-threaded fashion
    [all...]

Completed in 311 milliseconds