• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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.logging.LoggingBindings;
24 import com.android.dialer.logging.LoggingBindingsFactory;
25 import com.android.dialer.logging.LoggingBindingsStub;
26 import com.android.incallui.call.CallList;
27 import dagger.Module;
28 import dagger.Provides;
29 
30 /** Module which bind {@link com.android.dialer.feedback.stub.CallFeedbackListenerStub}. */
31 @Module
32 public class StubFeedbackModule {
33 
34   @Provides
provideLoggingBindings(LoggingBindingsFactory factory)35   static LoggingBindings provideLoggingBindings(LoggingBindingsFactory factory) {
36     return new LoggingBindingsStub();
37   }
38 
39   @Provides
provideCallFeedbackSender()40   static FeedbackSender provideCallFeedbackSender() {
41     LogUtil.i("StubFeedbackModule.provideCallFeedbackSender", "return stub");
42     return new FeedbackSenderStub();
43   }
44 
45   @Provides
provideCallFeedbackListener(@pplicationContext Context context)46   static CallList.Listener provideCallFeedbackListener(@ApplicationContext Context context) {
47     LogUtil.i("StubFeedbackModule.provideCallFeedbackListener", "returning stub");
48     return new CallFeedbackListenerStub(context);
49   }
50 }
51