2022-10-04 19:13:55 +00:00
|
|
|
--- a/components/crash/core/app/crashpad.cc
|
|
|
|
|
+++ b/components/crash/core/app/crashpad.cc
|
2023-10-19 17:09:42 +00:00
|
|
|
@@ -28,8 +28,8 @@
|
2022-10-04 19:13:55 +00:00
|
|
|
#include "build/chromeos_buildflags.h"
|
|
|
|
|
#include "components/crash/core/app/crash_reporter_client.h"
|
2023-10-19 17:09:42 +00:00
|
|
|
#include "components/crash/core/common/crash_key.h"
|
2022-10-04 19:13:55 +00:00
|
|
|
-#include "third_party/abseil-cpp/absl/base/internal/raw_logging.h"
|
2023-10-19 17:09:42 +00:00
|
|
|
-#include "third_party/abseil-cpp/absl/types/optional.h"
|
2022-10-04 19:13:55 +00:00
|
|
|
+#include <absl/base/internal/raw_logging.h>
|
2023-10-19 17:09:42 +00:00
|
|
|
+#include <absl/types/optional.h>
|
2022-10-04 19:13:55 +00:00
|
|
|
#include "third_party/crashpad/crashpad/client/annotation.h"
|
|
|
|
|
#include "third_party/crashpad/crashpad/client/annotation_list.h"
|
|
|
|
|
#include "third_party/crashpad/crashpad/client/crash_report_database.h"
|
2023-03-31 15:06:38 +00:00
|
|
|
@@ -49,6 +49,9 @@
|
2023-10-19 17:09:42 +00:00
|
|
|
#include "components/crash/core/app/crash_export_thunks.h"
|
2022-10-04 19:13:55 +00:00
|
|
|
#endif
|
|
|
|
|
|
2023-03-31 15:06:38 +00:00
|
|
|
+#if ABSL_LTS_RELEASE_VERSION < 20230000
|
2022-10-04 19:13:55 +00:00
|
|
|
+#define raw_log_internal raw_logging_internal
|
2023-03-31 15:06:38 +00:00
|
|
|
+#endif
|
2022-10-04 19:13:55 +00:00
|
|
|
namespace crash_reporter {
|
|
|
|
|
|
|
|
|
|
namespace {
|