diff options
author | ben <ben@chromium.org> | 2015-09-25 21:37:19 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-09-26 04:38:17 +0000 |
commit | 0d6be2d4fb4029869eb06f2d3b91e6c22eaafb77 (patch) | |
tree | 73e2d2ca183a2362e0cbe791d21dbaa2b9ddd285 /ash/shell_init_params.h | |
parent | 831b37b63f4809507e53dafc11fea7f943766f96 (diff) | |
download | chromium_src-0d6be2d4fb4029869eb06f2d3b91e6c22eaafb77.zip chromium_src-0d6be2d4fb4029869eb06f2d3b91e6c22eaafb77.tar.gz chromium_src-0d6be2d4fb4029869eb06f2d3b91e6c22eaafb77.tar.bz2 |
Replace use of BrowserThread::GetBlockingPool() with Shell::blocking_pool()
R=sky@chromium.org
http://crbug.com/332504
Review URL: https://codereview.chromium.org/1370813002
Cr-Commit-Position: refs/heads/master@{#350984}
Diffstat (limited to 'ash/shell_init_params.h')
-rw-r--r-- | ash/shell_init_params.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ash/shell_init_params.h b/ash/shell_init_params.h index 9a681fae..efa1511 100644 --- a/ash/shell_init_params.h +++ b/ash/shell_init_params.h @@ -13,6 +13,10 @@ #include "ash/ash_export.h" +namespace base { +class SequencedWorkerPool; +} + namespace ui { class ContextFactory; } @@ -28,6 +32,7 @@ struct ASH_EXPORT ShellInitParams { ShellDelegate* delegate; ui::ContextFactory* context_factory; + base::SequencedWorkerPool* blocking_pool; #if defined(OS_WIN) HWND remote_hwnd; |