summaryrefslogtreecommitdiff
path: root/java/com/android/dialer/contacts/ContactsModule.java
diff options
context:
space:
mode:
authortwyen <twyen@google.com>2018-06-26 16:04:53 -0700
committerandroid-build-merger <android-build-merger@google.com>2018-06-26 16:04:53 -0700
commitbfd105673cd6eb21a1c207d24169ad9bfe645539 (patch)
tree198fcf37848a75c8d68f74679a56fd9dc0f4891b /java/com/android/dialer/contacts/ContactsModule.java
parentee0371753257a3db0cce37f5dffae7ac6ebf34b2 (diff)
parentf9d508090cbf3b9f85b72241c77f625c152448bc (diff)
Merge changes I45374e61,I265dcc61,Id4622886,I09d0df69,I3ea0fb46 am: 2f6900466e am: e6262b0bce
am: f9d508090c Change-Id: I329713a5083f5ccd632b536e41f466eaef9dc4e2
Diffstat (limited to 'java/com/android/dialer/contacts/ContactsModule.java')
-rw-r--r--java/com/android/dialer/contacts/ContactsModule.java32
1 files changed, 32 insertions, 0 deletions
diff --git a/java/com/android/dialer/contacts/ContactsModule.java b/java/com/android/dialer/contacts/ContactsModule.java
new file mode 100644
index 000000000..979c525eb
--- /dev/null
+++ b/java/com/android/dialer/contacts/ContactsModule.java
@@ -0,0 +1,32 @@
+/*
+ * Copyright (C) 2018 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.dialer.contacts;
+
+import com.android.dialer.contacts.displaypreference.ContactDisplayPreferences;
+import com.android.dialer.contacts.displaypreference.ContactDisplayPreferencesImpl;
+import com.android.dialer.inject.DialerVariant;
+import com.android.dialer.inject.InstallIn;
+import dagger.Binds;
+import dagger.Module;
+
+/** Module for standard {@link ContactsComponent} */
+@InstallIn(variants = {DialerVariant.DIALER_TEST})
+@Module
+public abstract class ContactsModule {
+ @Binds
+ public abstract ContactDisplayPreferences to(ContactDisplayPreferencesImpl impl);
+}