| Index: content/browser/browser_main_loop.cc
|
| diff --git a/content/browser/browser_main_loop.cc b/content/browser/browser_main_loop.cc
|
| index 86a5d31e2073c47e72ef333a56bdd18084e8d28e..3f748a2b8ac6189c045521000f1db5f3907b2557 100644
|
| --- a/content/browser/browser_main_loop.cc
|
| +++ b/content/browser/browser_main_loop.cc
|
| @@ -818,6 +818,14 @@ int BrowserMainLoop::PreCreateThreads() {
|
| return result_code_;
|
| }
|
|
|
| +void BrowserMainLoop::PreShutdown() {
|
| + parts_->PreShutdown();
|
| +}
|
| +
|
| +void BrowserMainLoop::PostShutdown() {
|
| + parts_->PostShutdown();
|
| +}
|
| +
|
| void BrowserMainLoop::CreateStartupTasks() {
|
| TRACE_EVENT0("startup", "BrowserMainLoop::CreateStartupTasks");
|
|
|
|
|