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

Unified Diff: chrome/browser/autofill/wallet/wallet_service_url.h

Issue 11293078: Integrating Online Wallet into Chrome. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed linter issue Created 8 years 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/autofill/wallet/wallet_service_url.h
diff --git a/chrome/browser/autofill/wallet/wallet_service_url.h b/chrome/browser/autofill/wallet/wallet_service_url.h
new file mode 100644
index 0000000000000000000000000000000000000000..21560b4ab7ac7645fa009f87869a7892ecfab86e
--- /dev/null
+++ b/chrome/browser/autofill/wallet/wallet_service_url.h
@@ -0,0 +1,23 @@
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CHROME_BROWSER_AUTOFILL_WALLET_WALLET_SERVICE_URL_H_
+#define CHROME_BROWSER_AUTOFILL_WALLET_WALLET_SERVICE_URL_H_
+
+class GURL;
+
+namespace wallet {
+
+extern const char kApiKey[];
+GURL GetGetWalletItemsUrl();
+GURL GetGetFullWalletUrl();
+GURL GetAcceptLegalDocumentsUrl();
+GURL GetSecureUrl();
+GURL GetSendStatusUrl();
+GURL GetSaveToWalletUrl();
+
+} // end wallet namespace
Evan Stade 2012/12/07 19:57:44 normally this would be just } // namespace walle
ahutter 2012/12/15 01:06:31 Done.
+
+#endif // CHROME_BROWSER_AUTOFILL_WALLET_WALLET_SERVICE_URL_H_
+
Evan Stade 2012/12/07 19:57:44 extra newline?
ahutter 2012/12/15 01:06:31 If the file doesn't end in a newline the linter co
Ilya Sherman 2012/12/15 01:23:59 Which linter? The one on the code review site is
Evan Stade 2012/12/15 02:22:37 the file should end in a newline, but this looks l

Powered by Google App Engine
This is Rietveld 408576698