commit | 0917de897cf73bfe9fd167afb543a58844a6b088 | [log] [tgz] |
---|---|---|
author | Hans Wennborg <[email protected]> | Tue Apr 28 20:21:15 2020 |
committer | Commit Bot <[email protected]> | Tue Apr 28 20:21:15 2020 |
tree | 8c62b5dcc904f6e02ec9fd41806b9c3839cbb96e | |
parent | 7f9a165b51e739d9f48002fed2f8bb1e18ef7ea4 [diff] [blame] |
Remove/replace unnecessary logging.h includes in .cc files (content) CHECK, CHECK_EQ etc., and NOTREACHED/NOTIMPLEMENTED have moved to the much smaller headers check.h, check_op.h, and notreached.h, respectively. This CL updates .cc files to use those headers instead when possible, with the purpose of saving compile time. (Split out from https://crrev.com/c/2164525 which also has notes on how the change was generated.) Bug: 1031540 Change-Id: I643818242b92e19a1048fac89dd8aae323e8b1ea Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2164510 Reviewed-by: Robert Sesek <[email protected]> Reviewed-by: Alex Gough <[email protected]> Reviewed-by: Nasko Oskov <[email protected]> Commit-Queue: Hans Wennborg <[email protected]> Cr-Commit-Position: refs/heads/master@{#763511}
diff --git a/content/shell/browser/shell_download_manager_delegate.cc b/content/shell/browser/shell_download_manager_delegate.cc index 7d53046..1e8cc411 100644 --- a/content/shell/browser/shell_download_manager_delegate.cc +++ b/content/shell/browser/shell_download_manager_delegate.cc
@@ -12,9 +12,10 @@ #endif #include "base/bind.h" +#include "base/check_op.h" #include "base/command_line.h" #include "base/files/file_util.h" -#include "base/logging.h" +#include "base/notreached.h" #include "base/stl_util.h" #include "base/strings/string_util.h" #include "base/strings/utf_string_conversions.h"