1 /* 2 * Copyright (C) 2022 The Android Open Source Project 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17 package com.android.libraries.pcc.chronicle.api 18 19 /** [ChronicleAnalyticsClient] represents the chronicle clients for logging purposes */ 20 enum class ChronicleAnalyticsClient { 21 /* [NOOP] is used by clients which do not have a real implementation but needed as a NoOpModule */ 22 NOOP, 23 ECHO, // copybara:strip(Remove things specific to PCC) 24 PECAN, // copybara:strip(Remove things specific to PCC) 25 AUTOFILL, // copybara:strip(Remove things specific to PCC) 26 CONTENTCAPTURE, 27 OVERVIEW, // copybara:strip(Remove things specific to PCC) 28 SAFECOMMS, // copybara:strip(Remove things specific to PCC) 29 SIMPLESTORAGE, // copybara:strip(Remove things specific to PCC) 30 TEXTCLASSIFIER, // copybara:strip(Remove things specific to PCC) 31 ARCS, // copybara:strip(Remove things specific to PCC) 32 TEST, 33 INTERESTSMODEL, // copybara:strip(Remove things specific to PCC) 34 CONTENTSUGGESTIONS, // copybara:strip(Remove things specific to PCC) 35 LIVETRANSLATE, // copybara:strip(Remove things specific to PCC) 36 NOWPLAYING, // copybara:strip(Remove things specific to PCC) 37 NEXTCONVERSATION, // copybara:strip(Remove things specific to PCC) 38 SMARTSELECT, // copybara:strip(Remove things specific to PCC) 39 SEARCH, // copybara:strip(Remove things specific to PCC) 40 PEOPLE_SERVICE_PLATFORM, // copybara:strip(Remove things specific to PCC) 41 BLOBSTORE, 42 } 43