diff options
Diffstat (limited to 'cmds/incidentd/src/Reporter.cpp')
-rw-r--r-- | cmds/incidentd/src/Reporter.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/cmds/incidentd/src/Reporter.cpp b/cmds/incidentd/src/Reporter.cpp index fc8a6db59e4b..103004da3657 100644 --- a/cmds/incidentd/src/Reporter.cpp +++ b/cmds/incidentd/src/Reporter.cpp @@ -37,6 +37,10 @@ */ static const char* INCIDENT_DIRECTORY = "/data/misc/incidents/"; +namespace android { +namespace os { +namespace incidentd { + // ================================================================================ ReportRequest::ReportRequest(const IncidentReportArgs& a, const sp<IIncidentReportStatusListener>& l, int f) @@ -320,3 +324,7 @@ Reporter::run_report_status_t Reporter::upload_backlog() { return REPORT_FINISHED; } + +} // namespace incidentd +} // namespace os +} // namespace android |