commit | 0e223687cb484dd52c99a56813eaa2e142e9263a | [log] [tgz] |
---|---|---|
author | Hans Wennborg <[email protected]> | Mon Apr 27 21:51:29 2020 |
committer | Commit Bot <[email protected]> | Mon Apr 27 21:51:29 2020 |
tree | b334997acfea63318e7628c990a13e5efa61f9c9 | |
parent | ce1735da62c165a4bb46e0c536bcf480711a806a [diff] [blame] |
Remove/replace unnecessary logging.h includes in .cc files (url) 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: I24902d78aeee3741b969c45d6525e2552e83c697 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2165111 Auto-Submit: Hans Wennborg <[email protected]> Reviewed-by: Charlie Harrison <[email protected]> Reviewed-by: Matthew Denton <[email protected]> Commit-Queue: Matthew Denton <[email protected]> Cr-Commit-Position: refs/heads/master@{#763048}
diff --git a/url/gurl.cc b/url/gurl.cc index fb06480..27b470a 100644 --- a/url/gurl.cc +++ b/url/gurl.cc
@@ -10,7 +10,7 @@ #include <ostream> #include <utility> -#include "base/logging.h" +#include "base/check_op.h" #include "base/no_destructor.h" #include "base/strings/string_piece.h" #include "base/strings/string_util.h"