Chromium Code Reviews| OLD | NEW |
|---|---|
| (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 package org.chromium.chrome.browser.mojo; | |
| 6 | |
| 7 import android.content.Context; | |
| 8 | |
| 9 import org.chromium.base.annotations.CalledByNative; | |
| 10 import org.chromium.chrome.browser.payments.PaymentRequestFactory; | |
| 11 import org.chromium.content.browser.ServiceRegistry; | |
| 12 import org.chromium.mojom.payments.PaymentRequest; | |
| 13 | |
| 14 class ChromeServiceRegistrar { | |
|
Ted C
2016/04/06 19:46:56
quick javadoc
please use gerrit instead
2016/04/06 20:07:55
Done.
| |
| 15 @CalledByNative | |
| 16 static void registerRenderFrameMojoServices( | |
|
Ted C
2016/04/06 19:46:56
make this private
please use gerrit instead
2016/04/06 20:07:55
Done.
| |
| 17 ServiceRegistry registry, Context applicationContext) { | |
| 18 assert applicationContext != null; | |
| 19 registry.addService(PaymentRequest.MANAGER, new PaymentRequestFactory(ap plicationContext)); | |
| 20 } | |
| 21 } | |
| OLD | NEW |