mirror of
https://github.com/kidfromjupiter/nearby.git
synced 2026-09-14 14:46:12 -04:00
Internal bug fix.
PiperOrigin-RevId: 494020404
This commit is contained in:
committed by
Copybara-Service
parent
5ce2485694
commit
c5bb844509
@@ -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"
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -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 {
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user