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

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

Issue 2556753002: PaymentApp: Implement the JNI bridge (Closed)
Patch Set: Move the c++ bridging files into their own folder Created 4 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
« no previous file with comments | « chrome/browser/android/payments/service_worker_payment_app_bridge.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/android/payments/service_worker_payment_app_bridge.cc
diff --git a/chrome/browser/android/payments/service_worker_payment_app_bridge.cc b/chrome/browser/android/payments/service_worker_payment_app_bridge.cc
new file mode 100644
index 0000000000000000000000000000000000000000..f0494b42e5c7549d31757bb30329d4c839339004
--- /dev/null
+++ b/chrome/browser/android/payments/service_worker_payment_app_bridge.cc
@@ -0,0 +1,68 @@
+// Copyright 2016 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.
+
+#include "chrome/browser/android/payments/service_worker_payment_app_bridge.h"
+
+#include "base/android/jni_string.h"
+#include "base/android/scoped_java_ref.h"
+#include "chrome/browser/profiles/profile_manager.h"
+#include "components/payments/payment_app.mojom.h"
+#include "content/public/browser/service_worker_context.h"
+#include "content/public/browser/storage_partition.h"
+#include "jni/ServiceWorkerPaymentAppBridge_jni.h"
+
+using base::android::ConvertUTF8ToJavaString;
+using base::android::JavaParamRef;
+using base::android::ScopedJavaLocalRef;
+
+static ScopedJavaLocalRef<jobject> GetAllAppManifests(
+ JNIEnv* env,
+ const JavaParamRef<jclass>& jcaller) {
+ NOTIMPLEMENTED();
please use gerrit instead 2016/12/07 13:43:58 I would advise against using NOTIMPLEMENTED() in a
tommyt 2016/12/08 13:19:13 I've removed the NOTIMPLEMENTED()
+
+ // TODO(tommyt): crbug.com/669876. Initialise the following two variables.
+ // At the moment, they are empty, so this function will return an empty
+ // list of manifests. We need to hook this function up to the service worker
+ // payment apps.
+ std::string scope_url;
+ std::vector<payments::mojom::PaymentAppManifestPtr> manifests;
+
+ ScopedJavaLocalRef<jobject> java_manifests =
+ Java_ServiceWorkerPaymentAppBridge_createManifestList(env);
+ for (const auto& manifest : manifests) {
+ ScopedJavaLocalRef<jobject> java_manifest =
+ Java_ServiceWorkerPaymentAppBridge_createAndAddManifest(
+ env, java_manifests, ConvertUTF8ToJavaString(env, scope_url),
+ ConvertUTF8ToJavaString(env, manifest->label),
+ ConvertUTF8ToJavaString(
+ env, manifest->icon ? *manifest->icon : nullptr));
+ for (const auto& option : manifest->options) {
+ ScopedJavaLocalRef<jobject> java_option =
+ Java_ServiceWorkerPaymentAppBridge_createAndAddOption(
+ env, java_manifest, ConvertUTF8ToJavaString(env, option->id),
+ ConvertUTF8ToJavaString(env, option->label),
+ ConvertUTF8ToJavaString(env,
+ option->icon ? *option->icon : nullptr));
+ for (const auto& enabled_method : option->enabled_methods) {
+ Java_ServiceWorkerPaymentAppBridge_addEnabledMethod(
+ env, java_option, ConvertUTF8ToJavaString(env, enabled_method));
+ }
+ }
+ }
+
+ return java_manifests;
+}
+
+static void InvokePaymentApp(JNIEnv* env,
+ const JavaParamRef<jclass>& jcaller,
+ const JavaParamRef<jstring>& scopeUrl,
+ const JavaParamRef<jstring>& optionId,
+ const JavaParamRef<jobject>& methodDataMap) {
+ NOTIMPLEMENTED();
+}
+
+// Register native methods
please use gerrit instead 2016/12/07 13:43:58 Static methods should have a comment like this to
tommyt 2016/12/08 13:19:13 I've removed the obvious comment, but this is not
please use gerrit instead 2016/12/08 13:47:01 You're right, my bad.
+bool RegisterServiceWorkerPaymentAppBridge(JNIEnv* env) {
+ return RegisterNativesImpl(env);
+}
« no previous file with comments | « chrome/browser/android/payments/service_worker_payment_app_bridge.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698