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

Side by Side Diff: components/autofill/content/browser/wallet/wallet_signin_helper.h

Issue 655433004: Get rid of unnecessary forward declarations in components/autofill/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Incorporated Ilya's review comments Created 6 years, 2 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 COMPONENTS_AUTOFILL_CONTENT_BROWSER_WALLET_WALLET_SIGNIN_HELPER_H_ 5 #ifndef COMPONENTS_AUTOFILL_CONTENT_BROWSER_WALLET_WALLET_SIGNIN_HELPER_H_
6 #define COMPONENTS_AUTOFILL_CONTENT_BROWSER_WALLET_WALLET_SIGNIN_HELPER_H_ 6 #define COMPONENTS_AUTOFILL_CONTENT_BROWSER_WALLET_WALLET_SIGNIN_HELPER_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
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 "net/url_request/url_fetcher_delegate.h" 13 #include "net/url_request/url_fetcher_delegate.h"
14 14
15 namespace net { 15 namespace net {
16 class URLFetcher; 16 class URLFetcher;
17 class URLRequestContextGetter; 17 class URLRequestContextGetter;
18 class URLRequestStatus;
19 } 18 }
20 19
21 class GoogleServiceAuthError; 20 class GoogleServiceAuthError;
22 21
23 namespace autofill { 22 namespace autofill {
24 namespace wallet { 23 namespace wallet {
25 24
26 class WalletSigninHelperDelegate; 25 class WalletSigninHelperDelegate;
27 26
28 // Authenticates the user against the Online Wallet service. 27 // Authenticates the user against the Online Wallet service.
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 73
75 base::WeakPtrFactory<WalletSigninHelper> weak_ptr_factory_; 74 base::WeakPtrFactory<WalletSigninHelper> weak_ptr_factory_;
76 75
77 DISALLOW_COPY_AND_ASSIGN(WalletSigninHelper); 76 DISALLOW_COPY_AND_ASSIGN(WalletSigninHelper);
78 }; 77 };
79 78
80 } // namespace wallet 79 } // namespace wallet
81 } // namespace autofill 80 } // namespace autofill
82 81
83 #endif // COMPONENTS_AUTOFILL_CONTENT_BROWSER_WALLET_WALLET_SIGNIN_HELPER_H_ 82 #endif // COMPONENTS_AUTOFILL_CONTENT_BROWSER_WALLET_WALLET_SIGNIN_HELPER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698