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

Side by Side Diff: components/autofill/content/browser/wallet/wallet_client.cc

Issue 17392006: In components/autofill, move browser/ to core/browser/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase to fix conflicts Created 7 years, 6 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 | Annotate | Revision Log
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 #include "components/autofill/content/browser/wallet/wallet_client.h" 5 #include "components/autofill/content/browser/wallet/wallet_client.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/json/json_reader.h" 8 #include "base/json/json_reader.h"
9 #include "base/json/json_writer.h" 9 #include "base/json/json_writer.h"
10 #include "base/logging.h" 10 #include "base/logging.h"
11 #include "base/memory/scoped_ptr.h" 11 #include "base/memory/scoped_ptr.h"
12 #include "base/strings/string_util.h" 12 #include "base/strings/string_util.h"
13 #include "components/autofill/browser/autofill_metrics.h"
14 #include "components/autofill/content/browser/wallet/form_field_error.h" 13 #include "components/autofill/content/browser/wallet/form_field_error.h"
15 #include "components/autofill/content/browser/wallet/instrument.h" 14 #include "components/autofill/content/browser/wallet/instrument.h"
16 #include "components/autofill/content/browser/wallet/wallet_address.h" 15 #include "components/autofill/content/browser/wallet/wallet_address.h"
17 #include "components/autofill/content/browser/wallet/wallet_client_delegate.h" 16 #include "components/autofill/content/browser/wallet/wallet_client_delegate.h"
18 #include "components/autofill/content/browser/wallet/wallet_items.h" 17 #include "components/autofill/content/browser/wallet/wallet_items.h"
19 #include "components/autofill/content/browser/wallet/wallet_service_url.h" 18 #include "components/autofill/content/browser/wallet/wallet_service_url.h"
19 #include "components/autofill/core/browser/autofill_metrics.h"
20 #include "crypto/random.h" 20 #include "crypto/random.h"
21 #include "google_apis/google_api_keys.h" 21 #include "google_apis/google_api_keys.h"
22 #include "net/http/http_status_code.h" 22 #include "net/http/http_status_code.h"
23 #include "net/url_request/url_fetcher.h" 23 #include "net/url_request/url_fetcher.h"
24 #include "net/url_request/url_request_context_getter.h" 24 #include "net/url_request/url_request_context_getter.h"
25 25
26 namespace autofill { 26 namespace autofill {
27 namespace wallet { 27 namespace wallet {
28 28
29 namespace { 29 namespace {
(...skipping 965 matching lines...) Expand 10 before | Expand all | Expand 10 after
995 NOTREACHED(); 995 NOTREACHED();
996 return AutofillMetrics::UNKNOWN_API_CALL; 996 return AutofillMetrics::UNKNOWN_API_CALL;
997 } 997 }
998 998
999 NOTREACHED(); 999 NOTREACHED();
1000 return AutofillMetrics::UNKNOWN_API_CALL; 1000 return AutofillMetrics::UNKNOWN_API_CALL;
1001 } 1001 }
1002 1002
1003 } // namespace wallet 1003 } // namespace wallet
1004 } // namespace autofill 1004 } // namespace autofill
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698