OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TestBrowserThreadBundle
(Results
1 - 25
of
248
) sorted by null
1
2
3
4
5
6
7
8
9
10
/external/chromium_org/content/public/test/
test_browser_thread_bundle.h
5
//
TestBrowserThreadBundle
is a convenience class for creating a set of
7
// just instantiate the
TestBrowserThreadBundle
as a member variable.
12
// the
TestBrowserThreadBundle
construction.
14
// The
TestBrowserThreadBundle
will attempt to drain the MessageLoop on
20
// The
TestBrowserThreadBundle
will also flush the blocking pool on destruction.
46
class
TestBrowserThreadBundle
{
62
TestBrowserThreadBundle
();
63
explicit
TestBrowserThreadBundle
(int options);
65
~
TestBrowserThreadBundle
();
79
DISALLOW_COPY_AND_ASSIGN(
TestBrowserThreadBundle
);
[
all
...]
test_browser_thread_bundle.cc
14
TestBrowserThreadBundle
::
TestBrowserThreadBundle
() {
18
TestBrowserThreadBundle
::
TestBrowserThreadBundle
(int options) {
22
TestBrowserThreadBundle
::~
TestBrowserThreadBundle
() {
55
void
TestBrowserThreadBundle
::Init(int options) {
test_renderer_host.h
179
TestBrowserThreadBundle
* thread_bundle() { return thread_bundle_.get(); }
204
scoped_ptr<
TestBrowserThreadBundle
> thread_bundle_;
/external/chromium_org/chrome/browser/ui/cocoa/
cocoa_profile_test.h
13
class
TestBrowserThreadBundle
;
66
scoped_ptr<content::
TestBrowserThreadBundle
> thread_bundle_;
/external/chromium_org/chrome/browser/sync/
about_sync_util_unittest.cc
21
content::
TestBrowserThreadBundle
thread_bundle(
22
content::
TestBrowserThreadBundle
::DEFAULT);
abstract_profile_sync_service_test.cc
45
: thread_bundle_(content::
TestBrowserThreadBundle
::REAL_DB_THREAD |
46
content::
TestBrowserThreadBundle
::REAL_FILE_THREAD |
47
content::
TestBrowserThreadBundle
::REAL_IO_THREAD),
abstract_profile_sync_service_test.h
51
content::
TestBrowserThreadBundle
thread_bundle_;
/external/chromium_org/chrome/browser/component_updater/test/
component_patcher_unittest.h
43
content::
TestBrowserThreadBundle
thread_bundle_;
/external/chromium_org/chrome/browser/sync/glue/
browser_thread_model_worker_unittest.cc
30
thread_bundle_(content::
TestBrowserThreadBundle
::IO_MAINLOOP |
31
content::
TestBrowserThreadBundle
::REAL_DB_THREAD),
88
content::
TestBrowserThreadBundle
thread_bundle_;
/external/chromium_org/chrome/browser/search/suggestions/
thumbnail_manager_unittest.cc
21
content::
TestBrowserThreadBundle
thread_bundle_;
thumbnail_manager_browsertest.cc
38
thread_bundle_(content::
TestBrowserThreadBundle
::IO_MAINLOOP),
64
content::
TestBrowserThreadBundle
thread_bundle_;
/external/chromium_org/content/browser/gpu/
shader_disk_cache_unittest.cc
25
: thread_bundle_(content::
TestBrowserThreadBundle
::IO_MAINLOOP) {
44
content::
TestBrowserThreadBundle
thread_bundle_;
/external/chromium_org/chrome/browser/extensions/
sandboxed_unpacker_unittest.cc
61
browser_threads_.reset(new content::
TestBrowserThreadBundle
(
62
content::
TestBrowserThreadBundle
::IO_MAINLOOP));
106
scoped_ptr<content::
TestBrowserThreadBundle
> browser_threads_;
extension_install_prompt_unittest.cc
33
content::
TestBrowserThreadBundle
thread_bundle;
test_extension_environment.h
69
content::
TestBrowserThreadBundle
thread_bundle_;
/external/chromium_org/chrome/browser/chromeos/drive/
drive_integration_service_unittest.cc
32
content::
TestBrowserThreadBundle
thread_bundle_;
write_on_cache_file_unittest.cc
62
content::
TestBrowserThreadBundle
thread_bundle;
83
content::
TestBrowserThreadBundle
thread_bundle;
file_write_watcher_unittest.cc
63
: thread_bundle_(content::
TestBrowserThreadBundle
::IO_MAINLOOP) {
75
content::
TestBrowserThreadBundle
thread_bundle_;
/external/chromium_org/chrome/browser/profiles/
profile_info_cache_unittest.h
64
content::
TestBrowserThreadBundle
thread_bundle_;
/external/chromium_org/content/browser/
browser_thread_impl.h
63
friend class
TestBrowserThreadBundle
;
/external/chromium_org/content/browser/service_worker/
service_worker_handle_unittest.cc
44
: browser_thread_bundle_(
TestBrowserThreadBundle
::IO_MAINLOOP) {}
70
TestBrowserThreadBundle
browser_thread_bundle_;
/external/chromium_org/chrome/browser/net/
dns_probe_runner_unittest.cc
17
using content::
TestBrowserThreadBundle
;
51
TestBrowserThreadBundle
bundle_;
dns_probe_service_unittest.cc
22
using content::
TestBrowserThreadBundle
;
80
TestBrowserThreadBundle
bundle_;
/external/chromium_org/chrome/browser/safe_browsing/
database_manager_unittest.cc
17
using content::
TestBrowserThreadBundle
;
26
TestBrowserThreadBundle
thread_bundle_;
/external/chromium_org/content/browser/loader/
temporary_file_stream_unittest.cc
68
TestBrowserThreadBundle
thread_bundle(
TestBrowserThreadBundle
::IO_MAINLOOP);
Completed in 1149 milliseconds
1
2
3
4
5
6
7
8
9
10