summaryrefslogtreecommitdiffstats
path: root/src/com/android/dialerbind
diff options
context:
space:
mode:
authorYorke Lee <yorkelee@google.com>2013-08-26 15:46:10 -0700
committerYorke Lee <yorkelee@google.com>2013-08-28 10:02:45 -0700
commit034a2b329e469bf6888fbbcf91992f974015c2a8 (patch)
tree98b175320a6b1e3ce21aaae21a0e37def986407d /src/com/android/dialerbind
parent0baa98b5163f83a715b37e3cffe1488ac88ab049 (diff)
downloadandroid_packages_apps_Dialer-034a2b329e469bf6888fbbcf91992f974015c2a8.tar.gz
android_packages_apps_Dialer-034a2b329e469bf6888fbbcf91992f974015c2a8.tar.bz2
android_packages_apps_Dialer-034a2b329e469bf6888fbbcf91992f974015c2a8.zip
Use contacts cache in call log adapter
Bug: 10490038 Change-Id: I4c7fc5094f76dfaaa321bc69d595f37bb72f87ad
Diffstat (limited to 'src/com/android/dialerbind')
-rw-r--r--src/com/android/dialerbind/ServiceFactory.java30
1 files changed, 30 insertions, 0 deletions
diff --git a/src/com/android/dialerbind/ServiceFactory.java b/src/com/android/dialerbind/ServiceFactory.java
new file mode 100644
index 000000000..e53d2e82a
--- /dev/null
+++ b/src/com/android/dialerbind/ServiceFactory.java
@@ -0,0 +1,30 @@
+/*
+ * Copyright (C) 2013 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License
+ */
+
+package com.android.dialerbind;
+
+import com.android.dialer.service.CachedNumberLookupService;
+
+/**
+ * Default static binder for services.
+ */
+public class ServiceFactory {
+
+ public static CachedNumberLookupService newCachedNumberLookupService() {
+ // no-op
+ return null;
+ }
+}