Revert^4 "Add an option to disable native stack dumping on SIGQUIT."

Bug: 74121887

Still failing :(

This reverts commit 642e9d8249be5aff68022cabdc8ba576a57ff8d6.

Change-Id: I603ca9fdd2d8f2f759527130b3288efe5b23b5c3
diff --git a/runtime/thread.h b/runtime/thread.h
index af1401e..22b77ee 100644
--- a/runtime/thread.h
+++ b/runtime/thread.h
@@ -207,6 +207,7 @@
 
   // Dumps the detailed thread state and the thread stack (used for SIGQUIT).
   void Dump(std::ostream& os,
+            bool dump_native_stack = true,
             BacktraceMap* backtrace_map = nullptr,
             bool force_dump_stack = false) const
       REQUIRES(!Locks::thread_suspend_count_lock_)
@@ -1317,6 +1318,7 @@
 
   void DumpState(std::ostream& os) const REQUIRES_SHARED(Locks::mutator_lock_);
   void DumpStack(std::ostream& os,
+                 bool dump_native_stack = true,
                  BacktraceMap* backtrace_map = nullptr,
                  bool force_dump_stack = false) const
       REQUIRES(!Locks::thread_suspend_count_lock_)