summaryrefslogtreecommitdiffstats
path: root/components/webdata/common
diff options
context:
space:
mode:
authorskyostil <skyostil@chromium.org>2015-04-29 09:56:52 -0700
committerCommit bot <commit-bot@chromium.org>2015-04-29 16:57:27 +0000
commit62aa5ca413e15738ebebbb9acd271138ec808739 (patch)
tree759cd43b2937de73bcd49d721d0866812bbaa3a0 /components/webdata/common
parent778f8abf71081a44194ec131c0874f5a96dde801 (diff)
downloadchromium_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.h2
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;
}