// Copyright 2021 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_FEED_CORE_V2_PUBLIC_RELIABILITY_LOGGING_BRIDGE_H_ #define COMPONENTS_FEED_CORE_V2_PUBLIC_RELIABILITY_LOGGING_BRIDGE_H_ #include "base/time/time.h" #include "components/feed/core/proto/v2/wire/reliability_logging_enums.pb.h" #include "components/feed/core/v2/ios_shared_experiments_translator.h" #include "components/feed/core/v2/public/stream_type.h" #include "components/feed/core/v2/public/types.h" namespace feed { /** * Interface for logging reliability-related timestamps and status codes. See * chrome/browser/xsurface/android/java/src/org/chromium/chrome/browser/ * xsurface/feed/FeedLaunchReliabilityLogger.java. */ class ReliabilityLoggingBridge { … }; } // namespace feed #endif // COMPONENTS_FEED_CORE_V2_PUBLIC_RELIABILITY_LOGGING_BRIDGE_H_