// Copyright 2016 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef NET_LOG_NET_LOG_SOURCE_H_ #define NET_LOG_NET_LOG_SOURCE_H_ #include <stdint.h> #include "base/time/time.h" #include "base/values.h" #include "net/base/net_export.h" #include "net/log/net_log_source_type.h" namespace net { // Identifies the entity that generated this log. The |id| field should // uniquely identify the source, and is used by log observers to infer // message groupings. Can use NetLog::NextID() to create unique IDs. struct NET_EXPORT NetLogSource { … }; } // namespace net #endif // NET_LOG_NET_LOG_SOURCE_H_