Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 129bea54 authored by Steve Fung's avatar Steve Fung
Browse files

crash_reporter: Fix header include paths

Fix the header include paths to be relative to the crash_reporter
base folder.

Bug: 22873331
Change-Id: Icdd0495a79cd7679f38c54a84e189bfb3c9d7f1c
parent 4bf3dc93
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// found in the LICENSE file.


#include "crash-reporter/chrome_collector.h"
#include "chrome_collector.h"


#include <pcrecpp.h>
#include <pcrecpp.h>
#include <stdint.h>
#include <stdint.h>
+1 −1
Original line number Original line Diff line number Diff line
@@ -12,7 +12,7 @@
#include <base/macros.h>
#include <base/macros.h>
#include <gtest/gtest_prod.h>  // for FRIEND_TEST
#include <gtest/gtest_prod.h>  // for FRIEND_TEST


#include "crash-reporter/crash_collector.h"
#include "crash_collector.h"
#include "debugd/dbus-proxies.h"
#include "debugd/dbus-proxies.h"


class SystemLogging;
class SystemLogging;
+1 −1
Original line number Original line Diff line number Diff line
@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// found in the LICENSE file.


#include "crash-reporter/chrome_collector.h"
#include "chrome_collector.h"


#include <stdio.h>
#include <stdio.h>


+1 −1
Original line number Original line Diff line number Diff line
@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// found in the LICENSE file.


#include "crash-reporter/crash_collector.h"
#include "crash_collector.h"


#include <dirent.h>
#include <dirent.h>
#include <fcntl.h>  // For file creation modes.
#include <fcntl.h>  // For file creation modes.
+2 −2
Original line number Original line Diff line number Diff line
@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// found in the LICENSE file.


#include "crash-reporter/crash_collector_test.h"
#include "crash_collector_test.h"


#include <unistd.h>
#include <unistd.h>
#include <utility>
#include <utility>
@@ -13,7 +13,7 @@
#include <chromeos/syslog_logging.h>
#include <chromeos/syslog_logging.h>
#include <gtest/gtest.h>
#include <gtest/gtest.h>


#include "crash-reporter/crash_collector.h"
#include "crash_collector.h"


using base::FilePath;
using base::FilePath;
using base::StringPrintf;
using base::StringPrintf;
Loading