OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ScopedAllowSingleton
(Results
1 - 4
of
4
) sorted by null
/external/chromium/base/threading/
thread_restrictions.h
54
// Constructing a
ScopedAllowSingleton
temporarily allows accessing for the
56
class BASE_API
ScopedAllowSingleton
{
58
ScopedAllowSingleton
() { previous_value_ = SetSingletonAllowed(true); }
59
~
ScopedAllowSingleton
() { SetSingletonAllowed(previous_value_); }
61
// Whether singleton use is allowed when the
ScopedAllowSingleton
was
65
DISALLOW_COPY_AND_ASSIGN(
ScopedAllowSingleton
);
/external/chromium/base/
message_loop_proxy_impl.cc
48
base::ThreadRestrictions::
ScopedAllowSingleton
allow_singleton;
65
base::ThreadRestrictions::
ScopedAllowSingleton
allow_singleton;
tracked_objects.cc
97
base::ThreadRestrictions::
ScopedAllowSingleton
scoped_allow_singleton;
274
base::ThreadRestrictions::
ScopedAllowSingleton
scoped_allow_singleton;
297
base::ThreadRestrictions::
ScopedAllowSingleton
scoped_allow_singleton;
[
all
...]
/external/chromium/net/base/
keygen_handler_unittest.cc
95
base::ThreadRestrictions::
ScopedAllowSingleton
scoped_allow_singleton;
Completed in 267 milliseconds