OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:OneShotEvent
(Results
1 - 11
of
11
) sorted by null
/external/chromium_org/extensions/common/
one_shot_event.cc
16
struct
OneShotEvent
::TaskInfo {
29
OneShotEvent
::
OneShotEvent
() : signaled_(false) {
30
// It's acceptable to construct the
OneShotEvent
on one thread, but
34
OneShotEvent
::~
OneShotEvent
() {}
36
void
OneShotEvent
::Post(const tracked_objects::Location& from_here,
41
void
OneShotEvent
::Post(const tracked_objects::Location& from_here,
53
void
OneShotEvent
::Signal() {
one_shot_event.h
27
// allows clients to guarantee that code is run after the
OneShotEvent
28
// is signaled. If the
OneShotEvent
is destroyed before it's
35
class
OneShotEvent
{
37
OneShotEvent
();
38
~
OneShotEvent
();
53
// becomes true. Inside |task|, if this
OneShotEvent
is still
55
//
OneShotEvent
::Reset() doesn't exist).
66
// on a
OneShotEvent
to complete, so it's almost never safe to use
86
//
OneShotEvent
to clients that just want to run tasks through it
one_shot_event_unittest.cc
19
OneShotEvent
event;
26
OneShotEvent
event;
44
OneShotEvent
event;
58
OneShotEvent
event;
78
OneShotEvent
* event,
86
OneShotEvent
event;
/external/chromium_org/chrome/browser/profile_resetter/
automatic_profile_resetter_delegate.h
206
extensions::
OneShotEvent
modules_have_been_enumerated_event_;
211
extensions::
OneShotEvent
template_url_service_ready_event_;
215
extensions::
OneShotEvent
brandcoded_defaults_fetched_event_;
/external/chromium_org/chrome/browser/extensions/
extension_system.h
130
virtual const
OneShotEvent
& ready() const = 0;
170
virtual const
OneShotEvent
& ready() const OVERRIDE;
203
const
OneShotEvent
& ready() const { return ready_; }
237
OneShotEvent
ready_;
test_extension_system.h
70
virtual const
OneShotEvent
& ready() const OVERRIDE;
98
OneShotEvent
ready_;
test_extension_system.cc
158
const
OneShotEvent
& TestExtensionSystem::ready() const {
extension_service.h
156
extensions::
OneShotEvent
* ready);
791
extensions::
OneShotEvent
* const ready_;
[
all
...]
extension_system.cc
398
const
OneShotEvent
& ExtensionSystemImpl::ready() const {
extension_service.cc
351
extensions::
OneShotEvent
* ready)
[
all
...]
/external/chromium_org/chrome/browser/extensions/api/declarative/
rules_registry.h
68
const
OneShotEvent
& ready() const {
242
OneShotEvent
ready_;
Completed in 112 milliseconds