commit | 0924470b2bde605e2054a35e78526994ec58b8fa | [log] [tgz] |
---|---|---|
author | Hans Wennborg <[email protected]> | Mon Apr 27 21:08:05 2020 |
committer | Commit Bot <[email protected]> | Mon Apr 27 21:08:05 2020 |
tree | 37c7a10b0da431723b8abf42490a8e94f17734f4 | |
parent | eabbfe3e7b74dc927a0fcd790b3b4ad0bb0058a6 [diff] [blame] |
Remove/replace unnecessary logging.h includes in .cc files (net) 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: Ia3fbf74ab31096a4b066735e46966be9e9f92e0d Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2164832 Auto-Submit: Hans Wennborg <[email protected]> Commit-Queue: Matt Menke <[email protected]> Reviewed-by: Matt Menke <[email protected]> Cr-Commit-Position: refs/heads/master@{#763009}
diff --git a/net/websockets/websocket_basic_handshake_stream.cc b/net/websockets/websocket_basic_handshake_stream.cc index b3db99c..692b61a 100644 --- a/net/websockets/websocket_basic_handshake_stream.cc +++ b/net/websockets/websocket_basic_handshake_stream.cc
@@ -12,8 +12,8 @@ #include "base/base64.h" #include "base/bind.h" +#include "base/check_op.h" #include "base/compiler_specific.h" -#include "base/logging.h" #include "base/metrics/histogram_functions.h" #include "base/stl_util.h" #include "base/strings/string_number_conversions.h"