aboutsummaryrefslogtreecommitdiff
path: root/cast/sender
diff options
context:
space:
mode:
authorYuri Wiitala <miu@chromium.org>2019-11-20 11:43:36 -0800
committerCommit Bot <commit-bot@chromium.org>2019-11-20 19:58:49 +0000
commit0fda1abd2179f0383ef244210c4cd5dbd9f5562f (patch)
tree8bd96c3832da271f317eb9845b895ace8a66e5a5 /cast/sender
parent8e6db3b055baf1fd37ffb4805a363a9e78cb886e (diff)
downloadopenscreen-0fda1abd2179f0383ef244210c4cd5dbd9f5562f.tar.gz
Move platform/api/internal/logging_macros.h → util/logging.h
Follow-up to commit b797903e40723dc41d7eefb438eb0ac0af648c27, which "minified" platform/api/logging.h. This change moves the logging macros to util/, changes the #include's everywhere to point to util/logging.h, and removes the hack at the end of platform/api/logging.h. Bug: openscreen:77 Change-Id: I5e721783e35530f13b1ae0f50128ef67d0522bff Reviewed-on: https://chromium-review.googlesource.com/c/openscreen/+/1919717 Commit-Queue: Yuri Wiitala <miu@chromium.org> Reviewed-by: mark a. foltz <mfoltz@chromium.org>
Diffstat (limited to 'cast/sender')
-rw-r--r--cast/sender/channel/cast_auth_util.cc2
-rw-r--r--cast/sender/channel/cast_auth_util_unittest.cc2
-rw-r--r--cast/sender/channel/sender_socket_factory.h2
3 files changed, 3 insertions, 3 deletions
diff --git a/cast/sender/channel/cast_auth_util.cc b/cast/sender/channel/cast_auth_util.cc
index ec9a889b..9f706259 100644
--- a/cast/sender/channel/cast_auth_util.cc
+++ b/cast/sender/channel/cast_auth_util.cc
@@ -11,9 +11,9 @@
#include "cast/common/certificate/cast_cert_validator.h"
#include "cast/common/certificate/cast_cert_validator_internal.h"
#include "cast/common/certificate/cast_crl.h"
-#include "platform/api/logging.h"
#include "platform/api/time.h"
#include "platform/base/error.h"
+#include "util/logging.h"
namespace cast {
namespace channel {
diff --git a/cast/sender/channel/cast_auth_util_unittest.cc b/cast/sender/channel/cast_auth_util_unittest.cc
index be8c71e7..6ea4ea6a 100644
--- a/cast/sender/channel/cast_auth_util_unittest.cc
+++ b/cast/sender/channel/cast_auth_util_unittest.cc
@@ -12,8 +12,8 @@
#include "cast/common/certificate/test_helpers.h"
#include "cast/common/channel/proto/cast_channel.pb.h"
#include "gtest/gtest.h"
-#include "platform/api/logging.h"
#include "platform/api/time.h"
+#include "util/logging.h"
namespace cast {
namespace channel {
diff --git a/cast/sender/channel/sender_socket_factory.h b/cast/sender/channel/sender_socket_factory.h
index d5b6622d..62fa6d97 100644
--- a/cast/sender/channel/sender_socket_factory.h
+++ b/cast/sender/channel/sender_socket_factory.h
@@ -11,9 +11,9 @@
#include "cast/common/channel/cast_socket.h"
#include "cast/sender/channel/cast_auth_util.h"
-#include "platform/api/logging.h"
#include "platform/api/tls_connection_factory.h"
#include "platform/base/ip_address.h"
+#include "util/logging.h"
namespace cast {
namespace channel {