Searched defs:TestingBrowserProcess (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/chrome/test/base/
H A Dtesting_browser_process.h50 class TestingBrowserProcess : public BrowserProcess { class in inherits:BrowserProcess
52 // Initializes |g_browser_process| with a new TestingBrowserProcess.
58 // Convenience method to get g_browser_process as a TestingBrowserProcess*.
59 static TestingBrowserProcess* GetGlobal();
141 TestingBrowserProcess();
142 virtual ~TestingBrowserProcess();
174 // The following objects are not owned by TestingBrowserProcess:
187 DISALLOW_COPY_AND_ASSIGN(TestingBrowserProcess);
190 // RAII (resource acquisition is initialization) for TestingBrowserProcess.
191 // Allows you to initialize TestingBrowserProcess/NotificationServic
[all...]
H A Dtesting_browser_process.cc49 TestingBrowserProcess* TestingBrowserProcess::GetGlobal() {
50 return static_cast<TestingBrowserProcess*>(g_browser_process);
54 void TestingBrowserProcess::CreateInstance() {
56 g_browser_process = new TestingBrowserProcess;
60 void TestingBrowserProcess::DeleteInstance() {
67 TestingBrowserProcess::TestingBrowserProcess() function in class:TestingBrowserProcess
83 TestingBrowserProcess::~TestingBrowserProcess() {
[all...]

Completed in 1017 milliseconds