Index: chrome/browser/sync/glue/chrome_report_unrecoverable_error.cc |
diff --git a/chrome/browser/sync/glue/chrome_report_unrecoverable_error.cc b/chrome/browser/sync/glue/chrome_report_unrecoverable_error.cc |
index 72b5c72c448afb7baf58c0f46d55a565e80d3a47..9c7797bcae704908a43e786396c09c80327ebe5f 100644 |
--- a/chrome/browser/sync/glue/chrome_report_unrecoverable_error.cc |
+++ b/chrome/browser/sync/glue/chrome_report_unrecoverable_error.cc |
@@ -4,10 +4,10 @@ |
#include "chrome/browser/sync/glue/chrome_report_unrecoverable_error.h" |
+#include "base/debug/dump_without_crashing.h" |
#include "base/rand_util.h" |
#include "chrome/common/chrome_constants.h" |
#include "chrome/common/chrome_version_info.h" |
-#include "chrome/common/dump_without_crashing.h" |
namespace browser_sync { |
@@ -27,7 +27,7 @@ void ChromeReportUnrecoverableError() { |
if (random_number > kErrorUploadRatio) |
return; |
- logging::DumpWithoutCrashing(); |
+ base::debug::DumpWithoutCrashing(); |
} |
} // namespace browser_sync |