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

Unified Diff: services/device/android/java/src/org/chromium/services/device/InterfaceRegistrar.java

Issue 2847523002: Android: Remove GetApplicationContext part 4 (Closed)
Patch Set: fix cronet Created 3 years, 7 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: services/device/android/java/src/org/chromium/services/device/InterfaceRegistrar.java
diff --git a/services/device/android/java/src/org/chromium/services/device/InterfaceRegistrar.java b/services/device/android/java/src/org/chromium/services/device/InterfaceRegistrar.java
index b9e230bb922259044f9a81661fcdcc6ebc259290..3ad781da172984e7a2f985391a2690c466b6a3be 100644
--- a/services/device/android/java/src/org/chromium/services/device/InterfaceRegistrar.java
+++ b/services/device/android/java/src/org/chromium/services/device/InterfaceRegistrar.java
@@ -4,8 +4,6 @@
package org.chromium.services.device;
-import android.content.Context;
-
import org.chromium.base.annotations.CalledByNative;
import org.chromium.base.annotations.JNINamespace;
import org.chromium.device.battery.BatteryMonitorFactory;
@@ -18,14 +16,12 @@ import org.chromium.services.service_manager.InterfaceRegistry;
@JNINamespace("device")
class InterfaceRegistrar {
@CalledByNative
- static void createInterfaceRegistryForContext(int nativeHandle, Context applicationContext) {
+ static void createInterfaceRegistryForContext(int nativeHandle) {
// Note: The bindings code manages the lifetime of this object, so it
// is not necessary to hold on to a reference to it explicitly.
InterfaceRegistry registry = InterfaceRegistry.create(
CoreImpl.getInstance().acquireNativeHandle(nativeHandle).toMessagePipeHandle());
- registry.addInterface(
- BatteryMonitor.MANAGER, new BatteryMonitorFactory(applicationContext));
- registry.addInterface(
- VibrationManager.MANAGER, new VibrationManagerImpl.Factory(applicationContext));
+ registry.addInterface(BatteryMonitor.MANAGER, new BatteryMonitorFactory());
+ registry.addInterface(VibrationManager.MANAGER, new VibrationManagerImpl.Factory());
}
}

Powered by Google App Engine
This is Rietveld 408576698