OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TestingBrowserProcess
(Results
1 - 25
of
87
) sorted by null
1
2
3
4
/external/chromium_org/chrome/test/base/
scoped_testing_local_state.h
11
class
TestingBrowserProcess
;
14
//
TestingBrowserProcess
(for most unit tests it's NULL).
17
explicit ScopedTestingLocalState(
TestingBrowserProcess
* browser_process);
25
TestingBrowserProcess
* browser_process_;
testing_browser_process.cc
48
TestingBrowserProcess
*
TestingBrowserProcess
::GetGlobal() {
49
return static_cast<
TestingBrowserProcess
*>(g_browser_process);
53
void
TestingBrowserProcess
::CreateInstance() {
55
g_browser_process = new
TestingBrowserProcess
;
59
void
TestingBrowserProcess
::DeleteInstance() {
66
TestingBrowserProcess
::
TestingBrowserProcess
()
82
TestingBrowserProcess
::~
TestingBrowserProcess
() {
[
all
...]
testing_profile_manager.h
22
class
TestingBrowserProcess
;
27
//
TestingBrowserProcess
set up in your test.
34
explicit TestingProfileManager(
TestingBrowserProcess
* browser_process);
93
TestingBrowserProcess
* browser_process_;
chrome_unit_test_suite.cc
12
// Creates a
TestingBrowserProcess
for each test.
19
TestingBrowserProcess
::CreateInstance();
23
TestingBrowserProcess
::DeleteInstance();
scoped_testing_local_state.cc
12
TestingBrowserProcess
* browser_process)
testing_io_thread_state.cc
50
new IOThread(
TestingBrowserProcess
::GetGlobal()->local_state(),
51
TestingBrowserProcess
::GetGlobal()->policy_service(),
62
TestingBrowserProcess
::GetGlobal()->SetIOThread(io_thread_state_.get());
73
TestingBrowserProcess
::GetGlobal()->SetIOThread(NULL);
testing_browser_process.h
46
class
TestingBrowserProcess
: public BrowserProcess {
48
// Initializes |g_browser_process| with a new
TestingBrowserProcess
.
54
// Convenience method to get g_browser_process as a
TestingBrowserProcess
*.
55
static
TestingBrowserProcess
* GetGlobal();
136
TestingBrowserProcess
();
137
virtual ~
TestingBrowserProcess
();
171
// The following objects are not owned by
TestingBrowserProcess
:
180
DISALLOW_COPY_AND_ASSIGN(
TestingBrowserProcess
);
183
// RAII (resource acquisition is initialization) for
TestingBrowserProcess
.
184
// Allows you to initialize
TestingBrowserProcess
/NotificationService befor
[
all
...]
/external/chromium/chrome/browser/policy/
browser_policy_connector.h
17
class
TestingBrowserProcess
;
73
friend class ::
TestingBrowserProcess
;
/external/chromium_org/chrome/browser/storage_monitor/
test_storage_monitor.cc
36
TestingBrowserProcess
* browser_process =
TestingBrowserProcess
::GetGlobal();
61
TestingBrowserProcess
* browser_process =
TestingBrowserProcess
::GetGlobal();
/external/chromium/chrome/browser/ui/
shell_dialogs_unittest.cc
79
static_cast<
TestingBrowserProcess
*>(g_browser_process)->
93
static_cast<
TestingBrowserProcess
*>(g_browser_process)->
/external/chromium/chrome/browser/extensions/
apps_promo_unittest.cc
58
TestingBrowserProcess
* testing_browser_process =
59
static_cast<
TestingBrowserProcess
*>(g_browser_process);
64
TestingBrowserProcess
* testing_browser_process =
65
static_cast<
TestingBrowserProcess
*>(g_browser_process);
/external/chromium_org/chrome/browser/ui/views/bookmarks/
bookmark_bar_view_unittest.cc
47
ScopedTestingLocalState local_state(
TestingBrowserProcess
::GetGlobal());
/external/chromium_org/chrome/browser/chromeos/login/
wallpaper_manager_unittest.cc
49
TestingBrowserProcess
::GetGlobal()->SetLocalState(local_state_.get());
64
TestingBrowserProcess
::GetGlobal()->SetLocalState(0);
/external/chromium_org/chrome/browser/ui/startup/
session_crashed_infobar_delegate_unittest.cc
26
static_cast<
TestingBrowserProcess
*>(g_browser_process)
34
static_cast<
TestingBrowserProcess
*>(g_browser_process)->SetLocalState(NULL);
/external/chromium/chrome/browser/web_resource/
promo_resource_service_unittest.cc
27
TestingBrowserProcess
* testing_browser_process =
28
static_cast<
TestingBrowserProcess
*>(g_browser_process);
117
TestingBrowserProcess
* testing_browser_process =
118
static_cast<
TestingBrowserProcess
*>(g_browser_process);
188
TestingBrowserProcess
* testing_browser_process =
189
static_cast<
TestingBrowserProcess
*>(g_browser_process);
/external/chromium_org/chrome/browser/ui/bookmarks/
bookmark_prompt_controller_unittest.cc
65
TestingBrowserProcess
::GetGlobal()->
77
TestingBrowserProcess
::GetGlobal()->
/external/chromium/chrome/browser/profiles/
profile_manager_unittest.cc
46
TestingBrowserProcess
* testing_browser_process =
47
static_cast<
TestingBrowserProcess
*>(g_browser_process);
54
TestingBrowserProcess
* testing_browser_process =
55
static_cast<
TestingBrowserProcess
*>(g_browser_process);
/external/chromium_org/chrome/browser/extensions/
browser_permissions_policy_delegate_unittest.cc
25
new TestingProfileManager(
TestingBrowserProcess
::GetGlobal()));
/external/chromium_org/chrome/browser/signin/
local_auth_unittest.cc
23
TestingBrowserProcess
::GetGlobal());
/external/chromium_org/chrome/browser/ui/
chrome_select_file_policy_unittest.cc
95
TestingBrowserProcess
::GetGlobal());
/external/chromium_org/chrome/browser/ui/views/frame/
test_with_browser_view.cc
48
new ScopedTestingLocalState(
TestingBrowserProcess
::GetGlobal()));
/external/chromium_org/chrome/browser/ui/views/
native_widget_win_interactive_uitest.cc
20
TestingBrowserProcess
::GetGlobal()));
/external/chromium_org/chrome/browser/printing/cloud_print/test/
cloud_print_proxy_process_browsertest.cc
381
TestingBrowserProcess
::CreateInstance();
415
TestingBrowserProcess
::DeleteInstance();
487
TestingBrowserProcess
* browser_process =
488
TestingBrowserProcess
::GetGlobal();
517
TestingBrowserProcess
* browser_process =
518
TestingBrowserProcess
::GetGlobal();
566
TestingBrowserProcess
* browser_process =
567
TestingBrowserProcess
::GetGlobal();
/external/chromium_org/chrome/browser/profiles/
off_the_record_profile_impl_unittest.cc
105
TestingBrowserProcess
* browser_process() {
106
return
TestingBrowserProcess
::GetGlobal();
/external/chromium_org/chrome/browser/ui/toolbar/
wrench_menu_model_unittest.cc
68
TestingBrowserProcess
::GetGlobal()->SetLocalState(prefs_.get());
76
TestingBrowserProcess
::GetGlobal()->SetLocalState(NULL);
Completed in 360 milliseconds
1
2
3
4