Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1169)

Side by Side Diff: chromeos/login/auth/online_attempt_host.h

Issue 1100773004: base: Remove most uses of MessageLoopProxy (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROMEOS_LOGIN_AUTH_ONLINE_ATTEMPT_HOST_H_ 5 #ifndef CHROMEOS_LOGIN_AUTH_ONLINE_ATTEMPT_HOST_H_
6 #define CHROMEOS_LOGIN_AUTH_ONLINE_ATTEMPT_HOST_H_ 6 #define CHROMEOS_LOGIN_AUTH_ONLINE_ATTEMPT_HOST_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/memory/ref_counted.h" 10 #include "base/memory/ref_counted.h"
11 #include "base/memory/scoped_ptr.h" 11 #include "base/memory/scoped_ptr.h"
12 #include "base/memory/weak_ptr.h" 12 #include "base/memory/weak_ptr.h"
13 #include "chromeos/chromeos_export.h" 13 #include "chromeos/chromeos_export.h"
14 #include "chromeos/login/auth/auth_attempt_state_resolver.h" 14 #include "chromeos/login/auth/auth_attempt_state_resolver.h"
15 #include "chromeos/login/auth/user_context.h" 15 #include "chromeos/login/auth/user_context.h"
16 16
17 namespace base {
18 class MessageLoopProxy;
danakj 2015/04/21 20:16:31 TODO somewhere?
Sami 2015/04/23 17:48:25 Done.
19 }
20
17 namespace net { 21 namespace net {
18 class URLRequestContextGetter; 22 class URLRequestContextGetter;
19 } 23 }
20 24
21 namespace chromeos { 25 namespace chromeos {
22 26
23 class AuthAttemptState; 27 class AuthAttemptState;
24 class OnlineAttempt; 28 class OnlineAttempt;
25 class UserContext; 29 class UserContext;
26 30
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 scoped_ptr<OnlineAttempt> online_attempt_; 66 scoped_ptr<OnlineAttempt> online_attempt_;
63 scoped_ptr<AuthAttemptState> state_; 67 scoped_ptr<AuthAttemptState> state_;
64 base::WeakPtrFactory<OnlineAttemptHost> weak_ptr_factory_; 68 base::WeakPtrFactory<OnlineAttemptHost> weak_ptr_factory_;
65 69
66 DISALLOW_COPY_AND_ASSIGN(OnlineAttemptHost); 70 DISALLOW_COPY_AND_ASSIGN(OnlineAttemptHost);
67 }; 71 };
68 72
69 } // namespace chromeos 73 } // namespace chromeos
70 74
71 #endif // CHROMEOS_LOGIN_AUTH_ONLINE_ATTEMPT_HOST_H_ 75 #endif // CHROMEOS_LOGIN_AUTH_ONLINE_ATTEMPT_HOST_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698