1 /* 2 * Copyright (C) 2017 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.dialer.feedback.stub; 18 19 import android.content.Context; 20 import com.android.dialer.common.LogUtil; 21 import com.android.dialer.feedback.FeedbackSender; 22 import com.android.dialer.inject.ApplicationContext; 23 import com.android.dialer.inject.DialerVariant; 24 import com.android.dialer.inject.InstallIn; 25 import com.android.dialer.logging.LoggingBindings; 26 import com.android.dialer.logging.LoggingBindingsFactory; 27 import com.android.dialer.logging.LoggingBindingsStub; 28 import com.android.incallui.call.CallList; 29 import dagger.Module; 30 import dagger.Provides; 31 32 /** Module which bind {@link com.android.dialer.feedback.stub.CallFeedbackListenerStub}. */ 33 @InstallIn(variants = {DialerVariant.DIALER_TEST}) 34 @Module 35 public class StubFeedbackModule { 36 37 @Provides provideLoggingBindings(LoggingBindingsFactory factory)38 static LoggingBindings provideLoggingBindings(LoggingBindingsFactory factory) { 39 return new LoggingBindingsStub(); 40 } 41 42 @Provides provideCallFeedbackSender()43 static FeedbackSender provideCallFeedbackSender() { 44 LogUtil.i("StubFeedbackModule.provideCallFeedbackSender", "return stub"); 45 return new FeedbackSenderStub(); 46 } 47 48 @Provides provideCallFeedbackListener(@pplicationContext Context context)49 static CallList.Listener provideCallFeedbackListener(@ApplicationContext Context context) { 50 LogUtil.i("StubFeedbackModule.provideCallFeedbackListener", "returning stub"); 51 return new CallFeedbackListenerStub(context); 52 } 53 } 54