summaryrefslogtreecommitdiff
path: root/cmds/dumpstate/DumpstateService.h
diff options
context:
space:
mode:
Diffstat (limited to 'cmds/dumpstate/DumpstateService.h')
-rw-r--r--cmds/dumpstate/DumpstateService.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/cmds/dumpstate/DumpstateService.h b/cmds/dumpstate/DumpstateService.h
index 3ec8471c04..ac8d3acbb5 100644
--- a/cmds/dumpstate/DumpstateService.h
+++ b/cmds/dumpstate/DumpstateService.h
@@ -44,7 +44,8 @@ class DumpstateService : public BinderService<DumpstateService>, public BnDumpst
const sp<IDumpstateListener>& listener,
bool is_screenshot_requested) override;
- binder::Status cancelBugreport(int32_t calling_uid, const std::string& calling_package);
+ // No-op
+ binder::Status cancelBugreport();
private:
// Dumpstate object which contains all the bugreporting logic.
@@ -52,8 +53,6 @@ class DumpstateService : public BinderService<DumpstateService>, public BnDumpst
// one bugreport.
// This service does not own this object.
Dumpstate* ds_;
- int32_t calling_uid_;
- std::string calling_package_;
std::mutex lock_;
};