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

Side by Side Diff: chrome/browser/android/mojo/chrome_service_registrar.cc

Issue 1831173002: Scaffolding for Android implementation of PaymentRequest. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@mojo
Patch Set: Rebase Created 4 years, 8 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 2016 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 #include "chrome/browser/android/mojo/chrome_service_registrar.h"
6
7 #include "base/android/context_utils.h"
8 #include "base/android/jni_android.h"
9 #include "content/browser/mojo/service_registry_android.h"
10 #include "jni/ChromeServiceRegistrar_jni.h"
11
12 // static
13 bool ChromeServiceRegistrar::Register(JNIEnv* env) {
14 return RegisterNativesImpl(env);
15 }
16
17 // static
18 void ChromeServiceRegistrar::RegisterProcessHostServicesForUI(
19 content::ServiceRegistryAndroid* registry) {
20 Java_ChromeServiceRegistrar_registerProcessHostServicesForUI(
21 base::android::AttachCurrentThread(), registry->GetObj().obj(),
22 base::android::GetApplicationContext());
23 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698