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

Unified Diff: components/autofill/core/browser/autofill_metrics.cc

Issue 17970003: New encryption/escrow endpoints for Wallet (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: And fixing comment 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 side-by-side diff with in-line comments
Download patch
Index: components/autofill/core/browser/autofill_metrics.cc
diff --git a/components/autofill/core/browser/autofill_metrics.cc b/components/autofill/core/browser/autofill_metrics.cc
index 2959106bb50ef8b30874c531a82200188cae6f1a..9c33b4090c55bebf586703778b35dcc8ecf99250 100644
--- a/components/autofill/core/browser/autofill_metrics.cc
+++ b/components/autofill/core/browser/autofill_metrics.cc
@@ -182,18 +182,15 @@ std::string WalletApiMetricToString(
return "GetFullWallet";
case AutofillMetrics::GET_WALLET_ITEMS:
return "GetWalletItems";
- case AutofillMetrics::SAVE_ADDRESS:
- return "SaveAddress";
- case AutofillMetrics::SAVE_INSTRUMENT:
- return "SaveInstrument";
- case AutofillMetrics::SAVE_INSTRUMENT_AND_ADDRESS:
- return "SaveInstrumentAndAddress";
+ case AutofillMetrics::SAVE_TO_WALLET:
+ return "SaveToWallet";
case AutofillMetrics::SEND_STATUS:
return "SendStatus";
- case AutofillMetrics::UPDATE_ADDRESS:
- return "UpdateAddress";
- case AutofillMetrics::UPDATE_INSTRUMENT:
- return "UpdateInstrument";
+ case AutofillMetrics::DEPRECATED_SAVE_ADDRESS:
ahutter 2013/07/02 21:56:54 Is this right or should it still map to the old st
Ilya Sherman 2013/07/02 22:13:42 This is fine, thanks :)
+ case AutofillMetrics::DEPRECATED_SAVE_INSTRUMENT:
+ case AutofillMetrics::DEPRECATED_SAVE_INSTRUMENT_AND_ADDRESS:
+ case AutofillMetrics::DEPRECATED_UPDATE_ADDRESS:
+ case AutofillMetrics::DEPRECATED_UPDATE_INSTRUMENT:
case AutofillMetrics::UNKNOWN_API_CALL:
NOTREACHED();
return "UnknownApiCall";

Powered by Google App Engine
This is Rietveld 408576698