Remove notifications from bugreport generation using combo keys

In Q, we added a new bugreport API that asks for user consent before
showing the "Share" notification for the bugreport. We will be migrating
all bugreporting clients to use the API in R.

In the new API workflow we are moving away from broadcasts and using
callbacks to communicate with dumpstate. Finished bugreport notification
broadcast used to share the final path of the bugreport but API now uses
file descriptors instead. Hence, moving away from broadcasts.

The full bugreport in this case can be retrieved from dumpstate directory
using 'adb pull' or finding and attaching the file directly to gmail or
betterbug.

Remove outputfile flag since it's unused.

Bug: 135186519
Bug: 137825702
Test: Build and flash to the device. Create a bugreport using combo
keys, share notification does not pop up. Full bugreport created in
bugreports/ dir

Change-Id: I3121008f49febd2cac1c667e3e106bd046e38141
diff --git a/init.goldfish.rc b/init.goldfish.rc
index db958d7..bc91e2f 100644
--- a/init.goldfish.rc
+++ b/init.goldfish.rc
@@ -111,8 +111,7 @@
     class late_start
     user system
 
-service bugreport /system/bin/dumpstate -d -p -B \
-        -o /data/user_de/0/com.android.shell/files/bugreports/bugreport
+service bugreport /system/bin/dumpstate -d -p
     class main
     disabled
     oneshot
diff --git a/init.ranchu.rc b/init.ranchu.rc
index a8e96a2..f50b03a 100644
--- a/init.ranchu.rc
+++ b/init.ranchu.rc
@@ -132,8 +132,7 @@
     group log
     oneshot
 
-service bugreport /system/bin/dumpstate -d -p -B -z \
-        -o /data/user_de/0/com.android.shell/files/bugreports/bugreport
+service bugreport /system/bin/dumpstate -d -p -z
     class main
     disabled
     oneshot
diff --git a/kernel-tests/init.ranchu.rc b/kernel-tests/init.ranchu.rc
index 1b8fc6c..12a9b14 100644
--- a/kernel-tests/init.ranchu.rc
+++ b/kernel-tests/init.ranchu.rc
@@ -34,8 +34,7 @@
     group log
     oneshot
 
-service bugreport /system/bin/dumpstate -d -p -B -z \
-        -o /data/user_de/0/com.android.shell/files/bugreports/bugreport
+service bugreport /system/bin/dumpstate -d -p -z
     class main
     disabled
     oneshot