OLD | NEW |
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 #include "components/autofill/content/browser/wallet/wallet_signin_helper.h" | 5 #include "components/autofill/content/browser/wallet/wallet_signin_helper.h" |
6 | 6 |
7 #include "base/callback_helpers.h" | 7 #include "base/callback_helpers.h" |
8 #include "base/json/json_reader.h" | 8 #include "base/json/json_reader.h" |
9 #include "base/logging.h" | 9 #include "base/logging.h" |
10 #include "base/rand_util.h" | 10 #include "base/rand_util.h" |
11 #include "base/strings/string_util.h" | 11 #include "base/strings/string_util.h" |
12 #include "base/strings/stringprintf.h" | 12 #include "base/strings/stringprintf.h" |
13 #include "base/time.h" | 13 #include "base/time/time.h" |
14 #include "base/values.h" | 14 #include "base/values.h" |
15 #include "components/autofill/content/browser/wallet/wallet_service_url.h" | 15 #include "components/autofill/content/browser/wallet/wallet_service_url.h" |
16 #include "components/autofill/content/browser/wallet/wallet_signin_helper_delega
te.h" | 16 #include "components/autofill/content/browser/wallet/wallet_signin_helper_delega
te.h" |
17 #include "google_apis/gaia/gaia_auth_fetcher.h" | 17 #include "google_apis/gaia/gaia_auth_fetcher.h" |
18 #include "google_apis/gaia/gaia_auth_util.h" | 18 #include "google_apis/gaia/gaia_auth_util.h" |
19 #include "google_apis/gaia/gaia_constants.h" | 19 #include "google_apis/gaia/gaia_constants.h" |
20 #include "google_apis/gaia/gaia_urls.h" | 20 #include "google_apis/gaia/gaia_urls.h" |
21 #include "google_apis/gaia/google_service_auth_error.h" | 21 #include "google_apis/gaia/google_service_auth_error.h" |
22 #include "net/base/escape.h" | 22 #include "net/base/escape.h" |
23 #include "net/url_request/url_fetcher.h" | 23 #include "net/url_request/url_fetcher.h" |
(...skipping 292 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
316 if (!dict->GetStringWithoutPathExpansion("email", email)) { | 316 if (!dict->GetStringWithoutPathExpansion("email", email)) { |
317 DVLOG(1) << "no email in JSON response"; | 317 DVLOG(1) << "no email in JSON response"; |
318 return false; | 318 return false; |
319 } | 319 } |
320 | 320 |
321 return !email->empty(); | 321 return !email->empty(); |
322 } | 322 } |
323 | 323 |
324 } // namespace wallet | 324 } // namespace wallet |
325 } // namespace autofill | 325 } // namespace autofill |
OLD | NEW |