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 /chromeos | |
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 'chromeos')
-rw-r--r-- | chromeos/login/auth/online_attempt.h | 5 | ||||
-rw-r--r-- | chromeos/login/auth/online_attempt_host.h | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/chromeos/login/auth/online_attempt.h b/chromeos/login/auth/online_attempt.h index 032d2f5..1a45371 100644 --- a/chromeos/login/auth/online_attempt.h +++ b/chromeos/login/auth/online_attempt.h @@ -19,6 +19,11 @@ class GaiaAuthFetcher; +namespace base { +// TODO(skyostil): Migrate to SingleThreadTaskRunner (crbug.com/465354). +class MessageLoopProxy; +} + namespace net { class URLRequestContextGetter; } diff --git a/chromeos/login/auth/online_attempt_host.h b/chromeos/login/auth/online_attempt_host.h index ee9fcb9..b835e5b 100644 --- a/chromeos/login/auth/online_attempt_host.h +++ b/chromeos/login/auth/online_attempt_host.h @@ -14,6 +14,11 @@ #include "chromeos/login/auth/auth_attempt_state_resolver.h" #include "chromeos/login/auth/user_context.h" +namespace base { +// TODO(skyostil): Migrate to SingleThreadTaskRunner (crbug.com/465354). +class MessageLoopProxy; +} + namespace net { class URLRequestContextGetter; } |