mirror of
https://github.com/kidfromjupiter/nearby.git
synced 2026-09-14 14:46:12 -04:00
Internal refactor to fix missing includes.
PiperOrigin-RevId: 427669790
This commit is contained in:
committed by
Copybara-Service
parent
ae0337db3b
commit
0e6620c970
@@ -25,12 +25,13 @@
|
||||
#include "connections/implementation/client_proxy.h"
|
||||
#include "connections/implementation/endpoint_channel.h"
|
||||
#include "connections/implementation/endpoint_channel_manager.h"
|
||||
#include "connections/implementation/proto/offline_wire_formats.pb.h"
|
||||
#include "connections/listeners.h"
|
||||
#include "internal/platform/byte_array.h"
|
||||
#include "internal/platform/runnable.h"
|
||||
#include "internal/platform/condition_variable.h"
|
||||
#include "internal/platform/count_down_latch.h"
|
||||
#include "internal/platform/multi_thread_executor.h"
|
||||
#include "internal/platform/runnable.h"
|
||||
#include "internal/platform/single_thread_executor.h"
|
||||
#include "internal/platform/system_clock.h"
|
||||
|
||||
|
||||
@@ -17,6 +17,7 @@
|
||||
|
||||
#include <cstdint>
|
||||
|
||||
#include "connections/implementation/proto/offline_wire_formats.pb.h"
|
||||
#include "connections/payload.h"
|
||||
#include "internal/platform/byte_array.h"
|
||||
#include "internal/platform/exception.h"
|
||||
|
||||
@@ -294,6 +294,7 @@ cc_library(
|
||||
"//internal/platform/implementation:types",
|
||||
"@com_google_absl//absl/base:core_headers",
|
||||
"@com_google_absl//absl/time",
|
||||
"@com_google_glog//:glog",
|
||||
],
|
||||
)
|
||||
|
||||
|
||||
@@ -15,12 +15,12 @@
|
||||
#ifndef PLATFORM_BASE_LOGGING_H_
|
||||
#define PLATFORM_BASE_LOGGING_H_
|
||||
|
||||
// logging.h is only included to allow logging clients to include CHECK's.
|
||||
// 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 "base/check.h"
|
||||
#else
|
||||
#include "logging.h"
|
||||
#include "glog/logging.h"
|
||||
#endif
|
||||
#include "internal/platform/implementation/log_message.h"
|
||||
#include "internal/platform/implementation/platform.h"
|
||||
|
||||
Reference in New Issue
Block a user