OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MessageLoopShared
(Results
1 - 16
of
16
) sorted by null
/external/chromium_org/ppapi/shared_impl/
ppb_message_loop_shared.cc
9
MessageLoopShared
::
MessageLoopShared
(PP_Instance instance)
12
MessageLoopShared
::
MessageLoopShared
(ForMainThread)
15
MessageLoopShared
::~
MessageLoopShared
() {}
ppb_message_loop_shared.h
26
//
MessageLoopShared
doesn't really do anything interesting. It exists so that
29
// implements this. So pointers to
MessageLoopShared
can only really be valid
31
class PPAPI_SHARED_EXPORT
MessageLoopShared
35
explicit
MessageLoopShared
(PP_Instance instance);
36
// Construct the one
MessageLoopShared
for the main thread. This must be
39
explicit
MessageLoopShared
(ForMainThread);
40
virtual ~
MessageLoopShared
();
58
DISALLOW_COPY_AND_ASSIGN(
MessageLoopShared
);
tracked_callback.h
25
class
MessageLoopShared
;
114
MessageLoopShared
* target_loop() const { return target_loop_.get(); }
173
// The
MessageLoopShared
on which this callback should be run. This will be
175
scoped_refptr<
MessageLoopShared
> target_loop_;
ppapi_globals.h
30
class
MessageLoopShared
;
113
// Return the
MessageLoopShared
of the current thread, if any. This will
116
virtual
MessageLoopShared
* GetCurrentMessageLoop() = 0;
thread_aware_callback.h
16
class
MessageLoopShared
;
32
scoped_refptr<
MessageLoopShared
> target_loop_;
test_globals.cc
57
MessageLoopShared
* TestGlobals::GetCurrentMessageLoop() { return NULL; }
test_globals.h
81
virtual
MessageLoopShared
* GetCurrentMessageLoop() OVERRIDE;
/external/chromium_org/mojo/examples/pepper_container_app/
mojo_ppapi_globals.cc
23
// A non-abstract subclass of ppapi::
MessageLoopShared
that represents the
25
// TODO(yzshen): Build a more general ppapi::
MessageLoopShared
subclass to fully
28
: public ppapi::
MessageLoopShared
{
32
:
MessageLoopShared
(ForMainThread()),
35
// ppapi::
MessageLoopShared
implementation.
160
ppapi::
MessageLoopShared
* MojoPpapiGlobals::GetCurrentMessageLoop() {
mojo_ppapi_globals.h
65
virtual ppapi::
MessageLoopShared
* GetCurrentMessageLoop() OVERRIDE;
/external/chromium_org/ppapi/proxy/
ppb_message_loop_proxy.h
23
class PPAPI_PROXY_EXPORT MessageLoopResource : public
MessageLoopShared
{
65
//
MessageLoopShared
implementation.
plugin_globals.h
75
virtual
MessageLoopShared
* GetCurrentMessageLoop() OVERRIDE;
ppb_message_loop_proxy.cc
30
:
MessageLoopShared
(instance),
39
:
MessageLoopShared
(for_main_thread),
plugin_globals.cc
164
MessageLoopShared
* PluginGlobals::GetCurrentMessageLoop() {
/external/chromium_org/content/renderer/pepper/
host_globals.h
53
virtual ppapi::
MessageLoopShared
* GetCurrentMessageLoop() OVERRIDE;
host_globals.cc
196
ppapi::
MessageLoopShared
* HostGlobals::GetCurrentMessageLoop() { return NULL; }
/external/chromium_org/ppapi/thunk/
enter.cc
27
ppapi::
MessageLoopShared
* current =
Completed in 258 milliseconds