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

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

Issue 13973004: Convert string16 -> base::string16 in components/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 | 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/string_number_conversions.h"
10 #include "base/stringprintf.h" 9 #include "base/stringprintf.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/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"
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after
176 } 176 }
177 177
178 void EncryptionEscrowClient::HandleMalformedResponse(net::URLFetcher* request) { 178 void EncryptionEscrowClient::HandleMalformedResponse(net::URLFetcher* request) {
179 // Called to inform exponential backoff logic of the error. 179 // Called to inform exponential backoff logic of the error.
180 request->ReceivedContentWasMalformed(); 180 request->ReceivedContentWasMalformed();
181 observer_->OnMalformedResponse(); 181 observer_->OnMalformedResponse();
182 } 182 }
183 183
184 } // namespace wallet 184 } // namespace wallet
185 } // namespace autofill 185 } // namespace autofill
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698