// Copyright 2017 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_NQE_EVENT_CREATOR_H_ #define NET_NQE_EVENT_CREATOR_H_ #include <stdint.h> #include "base/sequence_checker.h" #include "net/base/net_export.h" #include "net/log/net_log_with_source.h" #include "net/nqe/effective_connection_type.h" #include "net/nqe/network_quality.h" namespace net { class NetLogWithSource; namespace nqe::internal { // Class that adds net log events for network quality estimator. class NET_EXPORT_PRIVATE EventCreator { … }; } // namespace nqe::internal } // namespace net #endif // NET_NQE_EVENT_CREATOR_H_