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

Unified Diff: chrome/browser/payments/android/journey_logger_android.cc

Issue 2923243003: Merge-60 [Payments] Move the RequestedInformation metric to native. (Closed)
Patch Set: Created 3 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
« no previous file with comments | « chrome/browser/payments/android/journey_logger_android.h ('k') | components/payments/core/journey_logger.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/payments/android/journey_logger_android.cc
diff --git a/chrome/browser/payments/android/journey_logger_android.cc b/chrome/browser/payments/android/journey_logger_android.cc
index e071517f0caf8552b28718cf4e3a7c1732abcd3e..8ee841e0903ff885578204130f6702970c2d8332 100644
--- a/chrome/browser/payments/android/journey_logger_android.cc
+++ b/chrome/browser/payments/android/journey_logger_android.cc
@@ -109,6 +109,17 @@ void JourneyLoggerAndroid::SetSelectedPaymentMethod(
static_cast<JourneyLogger::SelectedPaymentMethod>(jpayment_method));
}
+void JourneyLoggerAndroid::SetRequestedInformation(
+ JNIEnv* env,
+ const base::android::JavaParamRef<jobject>& jcaller,
+ jboolean requested_shipping,
+ jboolean requested_email,
+ jboolean requested_phone,
+ jboolean requested_name) {
+ journey_logger_.SetRequestedInformation(requested_shipping, requested_email,
+ requested_phone, requested_name);
+}
+
void JourneyLoggerAndroid::SetCompleted(
JNIEnv* env,
const base::android::JavaParamRef<jobject>& jcaller) {
« no previous file with comments | « chrome/browser/payments/android/journey_logger_android.h ('k') | components/payments/core/journey_logger.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698