From 4f02639a38aa0fe522cfeb4c316d5bdffdeca7cd Mon Sep 17 00:00:00 2001 From: roldenburg Date: Fri, 13 Oct 2017 18:42:20 -0700 Subject: Rename Lightbringer to Duo Now that our Duo integration is public, we no longer need a code name. To avoid any disruption, logging and config related names were not changed. Bug: 63753964 Test: manual, existing tests PiperOrigin-RevId: 172172738 Change-Id: Ib9d3d80761944d850c8c4886def9fef9a28539a4 --- .../com/android/dialer/duo/stub/StubDuoModule.java | 30 ++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 java/com/android/dialer/duo/stub/StubDuoModule.java (limited to 'java/com/android/dialer/duo/stub/StubDuoModule.java') diff --git a/java/com/android/dialer/duo/stub/StubDuoModule.java b/java/com/android/dialer/duo/stub/StubDuoModule.java new file mode 100644 index 000000000..604406a94 --- /dev/null +++ b/java/com/android/dialer/duo/stub/StubDuoModule.java @@ -0,0 +1,30 @@ +/* + * Copyright (C) 2017 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.duo.stub; + +import com.android.dialer.duo.Duo; +import dagger.Binds; +import dagger.Module; +import javax.inject.Singleton; + +@Module +public abstract class StubDuoModule { + + @Binds + @Singleton + public abstract Duo bindsDuo(DuoStub duoStub); +} -- cgit v1.2.3