summaryrefslogtreecommitdiff
path: root/java/com/android/dialer/commandline/CommandLineModule.java
diff options
context:
space:
mode:
authortwyen <twyen@google.com>2018-03-19 18:12:47 -0700
committerCopybara-Service <copybara-piper@google.com>2018-03-19 19:06:18 -0700
commit9239dd2e7e62c15002860f90730d3cc63deae179 (patch)
tree56f18a640411600b2badf9cb4f4007d6f4259c48 /java/com/android/dialer/commandline/CommandLineModule.java
parent356db9a88f70435150aa58a33c94d08ae44bc22e (diff)
Implement call command
NUI dialpad is still broken. Test: Unit tests PiperOrigin-RevId: 189674304 Change-Id: I58d114ed45839f8ff85a3a0e48c3d200337915c9
Diffstat (limited to 'java/com/android/dialer/commandline/CommandLineModule.java')
-rw-r--r--java/com/android/dialer/commandline/CommandLineModule.java7
1 files changed, 6 insertions, 1 deletions
diff --git a/java/com/android/dialer/commandline/CommandLineModule.java b/java/com/android/dialer/commandline/CommandLineModule.java
index 9022d6cd5..612155662 100644
--- a/java/com/android/dialer/commandline/CommandLineModule.java
+++ b/java/com/android/dialer/commandline/CommandLineModule.java
@@ -17,6 +17,7 @@
package com.android.dialer.commandline;
import com.android.dialer.commandline.impl.Blocking;
+import com.android.dialer.commandline.impl.CallCommand;
import com.android.dialer.commandline.impl.Echo;
import com.android.dialer.commandline.impl.Help;
import com.android.dialer.commandline.impl.Version;
@@ -43,13 +44,16 @@ public abstract class CommandLineModule {
private final Version version;
private final Echo echo;
private final Blocking blocking;
+ private final CallCommand callCommand;
@Inject
- AospCommandInjector(Help help, Version version, Echo echo, Blocking blocking) {
+ AospCommandInjector(
+ Help help, Version version, Echo echo, Blocking blocking, CallCommand callCommand) {
this.help = help;
this.version = version;
this.echo = echo;
this.blocking = blocking;
+ this.callCommand = callCommand;
}
public CommandSupplier.Builder inject(CommandSupplier.Builder builder) {
@@ -57,6 +61,7 @@ public abstract class CommandLineModule {
builder.addCommand("version", version);
builder.addCommand("echo", echo);
builder.addCommand("blocking", blocking);
+ builder.addCommand("call", callCommand);
return builder;
}
}