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

Side by Side Diff: components/autofill/content/browser/wallet/wallet_service_url.h

Issue 1999923002: Move the Google Payments URL functions out of content. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4 //
5 // TODO(estade): this file probably belongs in core/
6
7 #ifndef COMPONENTS_AUTOFILL_CONTENT_BROWSER_WALLET_WALLET_SERVICE_URL_H_
8 #define COMPONENTS_AUTOFILL_CONTENT_BROWSER_WALLET_WALLET_SERVICE_URL_H_
9
10 #include <stddef.h>
11
12 class GURL;
13
14 namespace autofill {
15 namespace wallet {
16
17 // |user_index| is the index into the list of signed-in GAIA profiles for which
18 // this request is being made.
19 GURL GetManageInstrumentsUrl(size_t user_index);
20 GURL GetManageAddressesUrl(size_t user_index);
21
22 } // namespace wallet
23 } // namespace autofill
24
25 #endif // COMPONENTS_AUTOFILL_CONTENT_BROWSER_WALLET_WALLET_SERVICE_URL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698