| Index: chrome/browser/chrome_content_browser_client.cc
|
| diff --git a/chrome/browser/chrome_content_browser_client.cc b/chrome/browser/chrome_content_browser_client.cc
|
| index b038682ea64612c240f80cdc62f03df4d850737c..e6b440e19a886681015f9848f861c79162b249b1 100644
|
| --- a/chrome/browser/chrome_content_browser_client.cc
|
| +++ b/chrome/browser/chrome_content_browser_client.cc
|
| @@ -19,6 +19,7 @@
|
| #include "base/strings/string_number_conversions.h"
|
| #include "base/strings/utf_string_conversions.h"
|
| #include "base/threading/sequenced_worker_pool.h"
|
| +#include "chrome/browser/after_startup_task_utils.h"
|
| #include "chrome/browser/browser_about_handler.h"
|
| #include "chrome/browser/browser_process.h"
|
| #include "chrome/browser/browser_shutdown.h"
|
| @@ -694,6 +695,13 @@ content::BrowserMainParts* ChromeContentBrowserClient::CreateBrowserMainParts(
|
| return main_parts;
|
| }
|
|
|
| +void ChromeContentBrowserClient::PostAfterStartupTask(
|
| + const tracked_objects::Location& from_here,
|
| + const scoped_refptr<base::TaskRunner>& task_runner,
|
| + const base::Closure& task) {
|
| + AfterStartupTaskUtils::PostTask(from_here, task_runner, task);
|
| +}
|
| +
|
| std::string ChromeContentBrowserClient::GetStoragePartitionIdForSite(
|
| content::BrowserContext* browser_context,
|
| const GURL& site) {
|
|
|