• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (C) 2009 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.contacts.util;
18 
19 public class Constants {
20     public static final String MIME_TYPE_VIDEO_CHAT = "vnd.android.cursor.item/video-chat-address";
21 
22     public static final String SCHEME_TEL = "tel";
23     public static final String SCHEME_SMSTO = "smsto";
24     public static final String SCHEME_MAILTO = "mailto";
25     public static final String SCHEME_IMTO = "imto";
26     public static final String SCHEME_SIP = "sip";
27 
28     /**
29      * Log tag for performance measurement.
30      * To enable: adb shell setprop log.tag.ContactsPerf VERBOSE
31      */
32     public static final String PERFORMANCE_TAG = "ContactsPerf";
33 
34     /**
35      * Log tag for enabling/disabling StrictMode violation log.
36      * To enable: adb shell setprop log.tag.ContactsStrictMode DEBUG
37      */
38     public static final String STRICT_MODE_TAG = "ContactsStrictMode";
39 }
40