summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortimsteele@google.com <timsteele@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-10-06 01:24:03 +0000
committertimsteele@google.com <timsteele@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-10-06 01:24:03 +0000
commit311e102fe8a1aaab00a509b4875aeda39ba3b8f4 (patch)
tree65deb3e144ed5e799a85a580dcfb6c7a6d608f00
parent5b85bd84c9ce927f0794969c6ec66d58903d8ec5 (diff)
downloadchromium_src-311e102fe8a1aaab00a509b4875aeda39ba3b8f4.zip
chromium_src-311e102fe8a1aaab00a509b4875aeda39ba3b8f4.tar.gz
chromium_src-311e102fe8a1aaab00a509b4875aeda39ba3b8f4.tar.bz2
Initialize message_loop_ in gaia authenticator.
BUG=23906 Review URL: http://codereview.chromium.org/257058 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@28084 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--chrome/browser/sync/engine/net/gaia_authenticator.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome/browser/sync/engine/net/gaia_authenticator.cc b/chrome/browser/sync/engine/net/gaia_authenticator.cc
index 7faa2ff..b3f7ad5 100644
--- a/chrome/browser/sync/engine/net/gaia_authenticator.cc
+++ b/chrome/browser/sync/engine/net/gaia_authenticator.cc
@@ -94,7 +94,8 @@ GaiaAuthenticator::GaiaAuthenticator(const string& user_agent,
request_count_(0),
delay_(0),
next_allowed_auth_attempt_time_(0),
- early_auth_attempt_count_(0) {
+ early_auth_attempt_count_(0),
+ message_loop_(NULL) {
GaiaAuthEvent done = { GaiaAuthEvent::GAIA_AUTHENTICATOR_DESTROYED, None,
this };
channel_ = new Channel(done);