Walter Jang | 6456baf | 2016-01-31 12:07:26 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2016 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 | */ |
Gary Mai | 0a49afa | 2016-12-05 15:53:58 -0800 | [diff] [blame] | 16 | package com.android.contacts; |
Walter Jang | 6456baf | 2016-01-31 12:07:26 -0800 | [diff] [blame] | 17 | |
| 18 | /** |
Walter Jang | 9f3ec76 | 2016-02-09 16:15:37 -0800 | [diff] [blame] | 19 | * Experiment flag names. |
Walter Jang | 6456baf | 2016-01-31 12:07:26 -0800 | [diff] [blame] | 20 | */ |
| 21 | public final class Experiments { |
Walter Jang | ffcb31f | 2017-02-15 08:37:06 -0800 | [diff] [blame] | 22 | |
| 23 | /** |
| 24 | * Experiment to enable device account detection using CP2 queries |
| 25 | */ |
| 26 | public static final String CP2_DEVICE_ACCOUNT_DETECTION_ENABLED = |
| 27 | "Account__cp2_device_account_detection_enabled"; |
| 28 | |
James Laskey | cf3dbe1 | 2016-12-13 15:22:13 -0800 | [diff] [blame] | 29 | /** |
Walter Jang | 996e80f | 2016-09-22 14:52:39 -0700 | [diff] [blame] | 30 | * Flags for maximum content update time |
Walter Jang | d5cbb9e | 2016-08-18 08:56:59 -0700 | [diff] [blame] | 31 | */ |
Walter Jang | 996e80f | 2016-09-22 14:52:39 -0700 | [diff] [blame] | 32 | public static final String DYNAMIC_MAX_CONTENT_CHANGE_UPDATE_DELAY_MILLIS = |
| 33 | "Shortcuts__dynamic_max_content_change_update_delay_millis"; |
Walter Jang | d5cbb9e | 2016-08-18 08:56:59 -0700 | [diff] [blame] | 34 | |
Arthur Wang | 8debbac | 2016-09-21 16:39:04 -0700 | [diff] [blame] | 35 | /** |
| 36 | * Flags for minimum content update time |
| 37 | */ |
| 38 | public static final String DYNAMIC_MIN_CONTENT_CHANGE_UPDATE_DELAY_MILLIS = |
| 39 | "Shortcuts__dynamic_min_content_change_update_delay_millis"; |
| 40 | |
| 41 | /** |
Arthur Wang | f21521d | 2017-04-05 09:46:23 -0700 | [diff] [blame^] | 42 | * Flags for enabling video call from quick contact. |
| 43 | */ |
| 44 | public static final String QUICK_CONTACT_VIDEO_CALL = |
| 45 | "QuickContact__duo_integration"; |
| 46 | |
| 47 | /** |
yaolu | 9d99859 | 2016-10-14 23:21:00 -0700 | [diff] [blame] | 48 | * Flags for maximum time to show spinner for a contacts sync. |
| 49 | */ |
| 50 | public static final String PULL_TO_REFRESH_CANCEL_REFRESH_MILLIS = |
| 51 | "PullToRefresh__cancel_refresh_millis"; |
| 52 | |
Walter Jang | 6456baf | 2016-01-31 12:07:26 -0800 | [diff] [blame] | 53 | private Experiments() { |
| 54 | } |
| 55 | } |