diff options
author | skyostil <skyostil@chromium.org> | 2015-04-29 09:56:52 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-04-29 16:57:27 +0000 |
commit | 62aa5ca413e15738ebebbb9acd271138ec808739 (patch) | |
tree | 759cd43b2937de73bcd49d721d0866812bbaa3a0 /components/webdata/common | |
parent | 778f8abf71081a44194ec131c0874f5a96dde801 (diff) | |
download | chromium_src-62aa5ca413e15738ebebbb9acd271138ec808739.zip chromium_src-62aa5ca413e15738ebebbb9acd271138ec808739.tar.gz chromium_src-62aa5ca413e15738ebebbb9acd271138ec808739.tar.bz2 |
base: Remove use of MessageLoopProxy
Replace usage of MessageLoopProxy under base/ with SingleThreadTaskRunner
and ThreadTaskRunnerHandle (excluding the implementation of MessageLoopProxy
itself which will removed later).
This patch was mostly autogenerated with
https://codereview.chromium.org/1010073002.
Depends on https://codereview.chromium.org/1086733002/.
BUG=465354
TBR=nkostylev@chromium.org,pkasting@chromium.org,pauljensen@chromium.org
Review URL: https://codereview.chromium.org/1100773004
Cr-Commit-Position: refs/heads/master@{#327512}
Diffstat (limited to 'components/webdata/common')
-rw-r--r-- | components/webdata/common/web_data_service_base.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/components/webdata/common/web_data_service_base.h b/components/webdata/common/web_data_service_base.h index b80f4bc..2a0ead6 100644 --- a/components/webdata/common/web_data_service_base.h +++ b/components/webdata/common/web_data_service_base.h @@ -18,6 +18,8 @@ class WebDatabaseService; class WebDatabaseTable; namespace base { +// TODO(skyostil): Migrate to SingleThreadTaskRunner (crbug.com/465354). +class MessageLoopProxy; class Thread; } |