OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ObjectWatcher
(Results
1 - 2
of
2
) sorted by null
/external/chromium/base/win/
object_watcher.h
28
// class MyClass : public base::
ObjectWatcher
::Delegate {
37
// base::
ObjectWatcher
watcher_;
41
// signaled.
ObjectWatcher
makes this task easy. When MyClass goes out of
45
class BASE_API
ObjectWatcher
: public MessageLoop::DestructionObserver {
55
ObjectWatcher
();
56
~
ObjectWatcher
();
59
// where StartWatching is called. The
ObjectWatcher
is not responsible for
89
DISALLOW_COPY_AND_ASSIGN(
ObjectWatcher
);
object_watcher.cc
14
struct
ObjectWatcher
::Watch : public Task {
15
ObjectWatcher
* watcher; // The associated
ObjectWatcher
instance
37
ObjectWatcher
::
ObjectWatcher
() : watch_(NULL) {
40
ObjectWatcher
::~
ObjectWatcher
() {
44
bool
ObjectWatcher
::StartWatching(HANDLE object, Delegate* delegate) {
76
bool
ObjectWatcher
::StopWatching() {
80
// Make sure
ObjectWatcher
is used in a single-threaded fashion
[
all
...]
Completed in 1714 milliseconds