HomeSort by relevance Sort by last modified time
    Searched defs:TestingBrowserProcess (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/chrome/test/base/
testing_browser_process.h 50 class TestingBrowserProcess : public 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();
175 // The following objects are not owned by TestingBrowserProcess:
184 DISALLOW_COPY_AND_ASSIGN(TestingBrowserProcess);
187 // RAII (resource acquisition is initialization) for TestingBrowserProcess.
188 // Allows you to initialize TestingBrowserProcess/NotificationService befor
    [all...]
testing_browser_process.cc 49 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()
83 TestingBrowserProcess::~TestingBrowserProcess() {
    [all...]

Completed in 51 milliseconds