OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:BrowserMainLoop
(Results
1 - 10
of
10
) sorted by null
/external/chromium_org/content/browser/
browser_main_loop.h
60
class CONTENT_EXPORT
BrowserMainLoop
{
64
static
BrowserMainLoop
* GetInstance();
66
explicit
BrowserMainLoop
(const MainFunctionParams& parameters);
67
virtual ~
BrowserMainLoop
();
194
DISALLOW_COPY_AND_ASSIGN(
BrowserMainLoop
);
browser_main_loop.cc
243
// The currently-running
BrowserMainLoop
. There can be one or zero.
244
BrowserMainLoop
* g_current_browser_main_loop = NULL;
247
// the public interface of
BrowserMainLoop
.
271
class
BrowserMainLoop
::MemoryObserver : public base::MessageLoop::TaskObserver {
298
//
BrowserMainLoop
construction / destruction =============================
300
BrowserMainLoop
*
BrowserMainLoop
::GetInstance() {
305
BrowserMainLoop
::
BrowserMainLoop
(const MainFunctionParams& parameters)
318
BrowserMainLoop
::~BrowserMainLoop()
[
all
...]
browser_main_runner.cc
80
main_loop_.reset(new
BrowserMainLoop
(parameters));
174
scoped_ptr<
BrowserMainLoop
> main_loop_;
storage_partition_impl.cc
404
//
BrowserMainLoop
may not be initialized in unit tests. Tests will
408
BrowserMainLoop
::GetInstance()
409
?
BrowserMainLoop
::GetInstance()->indexed_db_thread()
/external/chromium_org/content/browser/speech/
speech_recognition_manager_impl.h
27
class
BrowserMainLoop
;
57
// issued when it is not created yet or destroyed (by
BrowserMainLoop
).
98
//
BrowserMainLoop
is the only one allowed to istantiate and free us.
99
friend class
BrowserMainLoop
;
/external/chromium_org/content/browser/renderer_host/media/
media_capture_devices_impl.cc
21
BrowserMainLoop
::GetInstance()->media_stream_manager())));
media_stream_manager.cc
125
// Must be on the UI thread to access
BrowserMainLoop
.
131
if (content::
BrowserMainLoop
::GetInstance()) {
136
base::Unretained(content::
BrowserMainLoop
::GetInstance()
385
//
BrowserMainLoop
always creates the PowerMonitor instance before creating
[
all
...]
/external/chromium_org/content/public/browser/
media_device_id.cc
47
content::
BrowserMainLoop
::GetInstance()->media_stream_manager();
/external/chromium_org/content/browser/renderer_host/
render_process_host_impl.cc
689
BrowserMainLoop
::GetInstance()->audio_manager();
735
BrowserMainLoop
::GetInstance()->media_stream_manager();
739
BrowserMainLoop
::GetInstance()->audio_mirroring_manager(),
740
BrowserMainLoop
::GetInstance()->user_input_monitor()));
746
BrowserMainLoop
::GetInstance()->audio_mirroring_manager(),
751
new MidiHost(GetID(),
BrowserMainLoop
::GetInstance()->midi_manager()));
[
all
...]
/external/chromium_org/content/browser/indexed_db/
indexed_db_browsertest.cc
144
BrowserMainLoop
::GetInstance()->indexed_db_thread()->
307
BrowserMainLoop
::GetInstance()->indexed_db_thread()->
Completed in 105 milliseconds