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

Side by Side Diff: components/autofill/content/browser/autocheckout_request_manager.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/autocheckout_request_manager.h" 5 #include "components/autofill/content/browser/autocheckout_request_manager.h"
6 6
7 #include "components/autofill/browser/autofill_manager_delegate.h" 7 #include "components/autofill/core/browser/autofill_manager_delegate.h"
8 #include "content/public/browser/browser_context.h" 8 #include "content/public/browser/browser_context.h"
9 9
10 namespace { 10 namespace {
11 11
12 const char kAutocheckoutRequestManagerKey[] = 12 const char kAutocheckoutRequestManagerKey[] =
13 "browser_context_autocheckout_request_manager"; 13 "browser_context_autocheckout_request_manager";
14 14
15 } // namespace 15 } // namespace
16 16
17 namespace autofill { 17 namespace autofill {
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 wallet::WalletClient::ErrorType error_type) { 117 wallet::WalletClient::ErrorType error_type) {
118 // Nothing to be done. |error_type| is logged by |metric_logger_|. 118 // Nothing to be done. |error_type| is logged by |metric_logger_|.
119 } 119 }
120 120
121 AutocheckoutRequestManager::AutocheckoutRequestManager( 121 AutocheckoutRequestManager::AutocheckoutRequestManager(
122 net::URLRequestContextGetter* request_context_getter) 122 net::URLRequestContextGetter* request_context_getter)
123 : wallet_client_(request_context_getter, this) { 123 : wallet_client_(request_context_getter, this) {
124 } 124 }
125 125
126 } // namespace autofill 126 } // namespace autofill
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698