summaryrefslogtreecommitdiff
path: root/cmds/lshal/DebugCommand.h
diff options
context:
space:
mode:
Diffstat (limited to 'cmds/lshal/DebugCommand.h')
-rw-r--r--cmds/lshal/DebugCommand.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/cmds/lshal/DebugCommand.h b/cmds/lshal/DebugCommand.h
index 317cc2821c..cd57e31bfc 100644
--- a/cmds/lshal/DebugCommand.h
+++ b/cmds/lshal/DebugCommand.h
@@ -21,7 +21,6 @@
#include <android-base/macros.h>
#include "Command.h"
-#include "ParentDebugInfoLevel.h"
#include "utils.h"
namespace android {
@@ -43,8 +42,9 @@ private:
std::string mInterfaceName;
std::vector<std::string> mOptions;
- // See comment on ParentDebugInfoLevel.
- ParentDebugInfoLevel mParentDebugInfoLevel = ParentDebugInfoLevel::FULL;
+ // Outputs the actual descriptor of a hal instead of the debug output
+ // if the arguments provided are a superclass of the actual hal impl.
+ bool mExcludesParentInstances;
DISALLOW_COPY_AND_ASSIGN(DebugCommand);
};