diff options
author | Allan Sandfeld Jensen <allan.jensen@qt.io> | 2020-10-12 14:27:29 +0200 |
---|---|---|
committer | Allan Sandfeld Jensen <allan.jensen@qt.io> | 2020-10-13 09:35:20 +0000 |
commit | c30a6232df03e1efbd9f3b226777b07e087a1122 (patch) | |
tree | e992f45784689f373bcc38d1b79a239ebe17ee23 /chromium/third_party/s2cellid/src | |
parent | 7b5b123ac58f58ffde0f4f6e488bcd09aa4decd3 (diff) | |
download | qtwebengine-chromium-85-based.tar.gz |
BASELINE: Update Chromium to 85.0.4183.14085-based
Change-Id: Iaa42f4680837c57725b1344f108c0196741f6057
Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
Diffstat (limited to 'chromium/third_party/s2cellid/src')
7 files changed, 6 insertions, 7 deletions
diff --git a/chromium/third_party/s2cellid/src/s2/r1interval.h b/chromium/third_party/s2cellid/src/s2/r1interval.h index 5590574cb72..f9fb48a1d62 100644 --- a/chromium/third_party/s2cellid/src/s2/r1interval.h +++ b/chromium/third_party/s2cellid/src/s2/r1interval.h @@ -23,7 +23,7 @@ #include <iosfwd> #include <iostream> -#include "base/logging.h" +#include "base/check.h" #include "s2/_fpcontractoff.h" #include "s2/util/math/vector.h" // IWYU pragma: export diff --git a/chromium/third_party/s2cellid/src/s2/r2rect.cc b/chromium/third_party/s2cellid/src/s2/r2rect.cc index 0761e6fc311..38347acd58c 100644 --- a/chromium/third_party/s2cellid/src/s2/r2rect.cc +++ b/chromium/third_party/s2cellid/src/s2/r2rect.cc @@ -19,7 +19,6 @@ #include <iosfwd> -#include "base/logging.h" #include "s2/r1interval.h" #include "s2/r2.h" diff --git a/chromium/third_party/s2cellid/src/s2/r2rect.h b/chromium/third_party/s2cellid/src/s2/r2rect.h index 1aa82fc03be..c9b45f75259 100644 --- a/chromium/third_party/s2cellid/src/s2/r2rect.h +++ b/chromium/third_party/s2cellid/src/s2/r2rect.h @@ -20,7 +20,7 @@ #include <iosfwd> -#include "base/logging.h" +#include "base/check.h" #include "s2/_fpcontractoff.h" #include "s2/r1interval.h" #include "s2/r2.h" diff --git a/chromium/third_party/s2cellid/src/s2/s2cellid.cc b/chromium/third_party/s2cellid/src/s2/s2cellid.cc index 8d891b585e3..4bb1d4f894a 100644 --- a/chromium/third_party/s2cellid/src/s2/s2cellid.cc +++ b/chromium/third_party/s2cellid/src/s2/s2cellid.cc @@ -24,8 +24,8 @@ #include <vector> #include <mutex> +#include "base/check_op.h" #include "base/format_macros.h" -#include "base/logging.h" #include "base/strings/stringprintf.h" #include "s2/r1interval.h" #include "s2/s2latlng.h" diff --git a/chromium/third_party/s2cellid/src/s2/s2cellid.h b/chromium/third_party/s2cellid/src/s2/s2cellid.h index 5f695e092eb..1b15d308a7b 100644 --- a/chromium/third_party/s2cellid/src/s2/s2cellid.h +++ b/chromium/third_party/s2cellid/src/s2/s2cellid.h @@ -24,7 +24,7 @@ #include <string> #include <vector> -#include "base/logging.h" +#include "base/check_op.h" #include "s2/_fpcontractoff.h" #include "s2/r2.h" #include "s2/r2rect.h" diff --git a/chromium/third_party/s2cellid/src/s2/s2coords.h b/chromium/third_party/s2cellid/src/s2/s2coords.h index 5b0961bbbdd..44bd9795dda 100644 --- a/chromium/third_party/s2cellid/src/s2/s2coords.h +++ b/chromium/third_party/s2cellid/src/s2/s2coords.h @@ -100,7 +100,7 @@ #include <algorithm> #include <cmath> -#include "base/logging.h" +#include "base/check_op.h" #include "s2/r2.h" #include "s2/s2coords-internal.h" #include "s2/s2point.h" diff --git a/chromium/third_party/s2cellid/src/s2/util/math/vector.h b/chromium/third_party/s2cellid/src/s2/util/math/vector.h index 0b0587ccb40..02140676333 100644 --- a/chromium/third_party/s2cellid/src/s2/util/math/vector.h +++ b/chromium/third_party/s2cellid/src/s2/util/math/vector.h @@ -28,7 +28,7 @@ #include <limits> #include <type_traits> -#include "base/logging.h" +#include "base/check_op.h" #include "base/macros.h" template <typename T> |