Internal bug fix.

PiperOrigin-RevId: 494020404
This commit is contained in:
Suet-Fei Li
2022-12-08 16:08:26 -08:00
committed by Copybara-Service
parent 5ce2485694
commit c5bb844509
11 changed files with 51 additions and 1 deletions
+5
View File
@@ -21,7 +21,12 @@
#include <string>
#include <vector>
#ifdef NEARBY_CHROMIUM
#include "base/check.h"
#else
#include "absl/log/check.h"
#endif
#include "absl/types/span.h"
#include "internal/crypto/nearby_base.h"
#include "internal/crypto/openssl_util.h"
+5
View File
@@ -23,7 +23,12 @@
#include <utility>
#include <vector>
#ifdef NEARBY_CHROMIUM
#include "base/check.h"
#else
#include "absl/log/check.h"
#endif
#include "internal/crypto/openssl_util.h"
#include <openssl/bn.h>
#include <openssl/bytestring.h>
+5
View File
@@ -22,7 +22,12 @@
#include <utility>
#include <vector>
#ifdef NEARBY_CHROMIUM
#include "base/check.h"
#else
#include "absl/log/check.h"
#endif
#include "absl/log/log.h"
#include "absl/strings/string_view.h"
#include "absl/types/span.h"
+5
View File
@@ -21,7 +21,12 @@
#include <string>
#include <vector>
#ifdef NEARBY_CHROMIUM
#include "base/check.h"
#else
#include "absl/log/check.h"
#endif
#include "absl/strings/string_view.h"
#include "internal/crypto/hkdf.h"
#include "internal/crypto/hmac.h"
+5
View File
@@ -19,7 +19,12 @@
#include <algorithm>
#include <string>
#ifdef NEARBY_CHROMIUM
#include "base/check.h"
#else
#include "absl/log/check.h"
#endif
#include "internal/crypto/hmac.h"
#include "internal/crypto/nearby_base.h"
#include "internal/crypto/openssl_util.h"
+5
View File
@@ -18,7 +18,12 @@
#include <limits>
#include <string>
#ifdef NEARBY_CHROMIUM
#include "base/check.h"
#else
#include "absl/log/check.h"
#endif
#include "absl/types/span.h"
namespace nearbybase {
+5
View File
@@ -20,7 +20,12 @@
#include <utility>
#include <vector>
#ifdef NEARBY_CHROMIUM
#include "base/check.h"
#else
#include "absl/log/check.h"
#endif
#include "absl/types/span.h"
#include "internal/crypto/openssl_util.h"
#include <openssl/bn.h>
+5
View File
@@ -16,7 +16,12 @@
#include <memory>
#ifdef NEARBY_CHROMIUM
#include "base/check.h"
#else
#include "absl/log/check.h"
#endif
#include "internal/crypto/openssl_util.h"
#include <openssl/bytestring.h>
#include <openssl/digest.h>
+5
View File
@@ -22,7 +22,12 @@
#include <string>
#include <utility>
#ifdef NEARBY_CHROMIUM
#include "base/check.h"
#else
#include "absl/log/check.h"
#endif
#include "internal/crypto/nearby_base.h"
#include "internal/crypto/openssl_util.h"
#include <openssl/evp.h>
+5
View File
@@ -37,7 +37,12 @@
#include <memory>
#include <utility>
#ifdef NEARBY_CHROMIUM
#include "base/check.h"
#else
#include "absl/log/check.h"
#endif
#include "internal/platform/mutex.h"
#include "internal/platform/mutex_lock.h"
+1 -1
View File
@@ -18,7 +18,7 @@
// base/logging.h is only included to allow logging clients to include CHECK's.
// In Chrome this is base/check.h. See crbug/1212611.
#ifdef NEARBY_CHROMIUM
#include "absl/log/check.h"
#include "base/check.h"
// base/logging.h is available externally as "glog". However, this repo contains
// template files that can't be built by Swift Package Manager. To build with
// SPM we only need CHECK and DCHECK defined.