// 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_NQE_NETWORK_QUALITY_OBSERVATION_SOURCE_H_ #define NET_NQE_NETWORK_QUALITY_OBSERVATION_SOURCE_H_ namespace net { // On Android, a Java counterpart will be generated for this enum. // GENERATED_JAVA_ENUM_PACKAGE: org.chromium.net // GENERATED_JAVA_CLASS_NAME_OVERRIDE: NetworkQualityObservationSource // GENERATED_JAVA_PREFIX_TO_STRIP: NETWORK_QUALITY_OBSERVATION_SOURCE_ enum NetworkQualityObservationSource { … }; namespace nqe::internal { // Different categories to which an observation source can belong to. Each // observation source belongs to exactly one category. enum ObservationCategory { … }; } // namespace nqe::internal } // namespace net #endif // NET_NQE_NETWORK_QUALITY_OBSERVATION_SOURCE_H_