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

Side by Side Diff: components/autofill/browser/wallet/encryption_escrow_client.cc

Issue 16614002: Use a direct include of utf_string_conversions.h in chrome_frame/, chromeos/, cloud_print/, compone… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase 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/browser/wallet/encryption_escrow_client.h" 5 #include "components/autofill/browser/wallet/encryption_escrow_client.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "base/memory/scoped_ptr.h" 8 #include "base/memory/scoped_ptr.h"
9 #include "base/stringprintf.h" 9 #include "base/stringprintf.h"
10 #include "base/strings/string_number_conversions.h" 10 #include "base/strings/string_number_conversions.h"
11 #include "base/strings/string_split.h" 11 #include "base/strings/string_split.h"
12 #include "base/utf_string_conversions.h" 12 #include "base/strings/utf_string_conversions.h"
13 #include "components/autofill/browser/wallet/encryption_escrow_client_observer.h " 13 #include "components/autofill/browser/wallet/encryption_escrow_client_observer.h "
14 #include "components/autofill/browser/wallet/instrument.h" 14 #include "components/autofill/browser/wallet/instrument.h"
15 #include "components/autofill/browser/wallet/wallet_service_url.h" 15 #include "components/autofill/browser/wallet/wallet_service_url.h"
16 #include "googleurl/src/gurl.h" 16 #include "googleurl/src/gurl.h"
17 #include "net/base/escape.h" 17 #include "net/base/escape.h"
18 #include "net/http/http_status_code.h" 18 #include "net/http/http_status_code.h"
19 #include "net/url_request/url_fetcher.h" 19 #include "net/url_request/url_fetcher.h"
20 #include "net/url_request/url_request_context_getter.h" 20 #include "net/url_request/url_request_context_getter.h"
21 21
22 namespace { 22 namespace {
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
180 } 180 }
181 181
182 void EncryptionEscrowClient::HandleMalformedResponse(net::URLFetcher* request) { 182 void EncryptionEscrowClient::HandleMalformedResponse(net::URLFetcher* request) {
183 // Called to inform exponential backoff logic of the error. 183 // Called to inform exponential backoff logic of the error.
184 request->ReceivedContentWasMalformed(); 184 request->ReceivedContentWasMalformed();
185 observer_->OnMalformedResponse(); 185 observer_->OnMalformedResponse();
186 } 186 }
187 187
188 } // namespace wallet 188 } // namespace wallet
189 } // namespace autofill 189 } // namespace autofill
OLDNEW
« no previous file with comments | « components/autofill/browser/validation_unittest.cc ('k') | components/autofill/browser/wallet/full_wallet.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698