commit | c3cffa634ce1fd84baaab5ba507e240b8abbd977 | [log] [tgz] |
---|---|---|
author | Hans Wennborg <[email protected]> | Mon Apr 27 10:09:12 2020 |
committer | Commit Bot <[email protected]> | Mon Apr 27 10:09:12 2020 |
tree | 58b4c5d3ba25657463693c1ed3a963acf33d32b9 | |
parent | ea26a7959d0a8096774a27674c2303b7fb93cadd [diff] [blame] |
Remove/replace unnecessary logging.h includes in .cc files (base) 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: I39ecaaf0d0770f1048c7f2ce2c43f98ec9212565 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2164633 Commit-Queue: Hans Wennborg <[email protected]> Auto-Submit: Hans Wennborg <[email protected]> Reviewed-by: kylechar <[email protected]> Reviewed-by: Matthew Denton <[email protected]> Cr-Commit-Position: refs/heads/master@{#762782}
diff --git a/base/sequence_token.cc b/base/sequence_token.cc index 3636c7f2..d80d774 100644 --- a/base/sequence_token.cc +++ b/base/sequence_token.cc
@@ -5,7 +5,7 @@ #include "base/sequence_token.h" #include "base/atomic_sequence_num.h" -#include "base/logging.h" +#include "base/check_op.h" #include "base/no_destructor.h" #include "base/threading/thread_local.h"