blob: 281f88c152c8c82c6da3f21df94197be638d8541 [file] [log] [blame]
Eric Erfanianccca3152017-02-22 16:32:36 -08001/*
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 */
Eric Erfanian91ce7d22017-06-05 13:35:02 -070016package com.android.dialer.common.concurrent;
Eric Erfanianccca3152017-02-22 16:32:36 -080017
Eric Erfanian91ce7d22017-06-05 13:35:02 -070018import dagger.Binds;
19import dagger.Module;
Eric Erfanianccca3152017-02-22 16:32:36 -080020
Eric Erfanian91ce7d22017-06-05 13:35:02 -070021/** Module which binds the production {@link DialerExecutorFactory}. */
22@Module
23public abstract class DialerExecutorModule {
Eric Erfanianccca3152017-02-22 16:32:36 -080024
Eric Erfanian91ce7d22017-06-05 13:35:02 -070025 @Binds
26 abstract DialerExecutorFactory bindDialerExecutorFactory(
27 DefaultDialerExecutorFactory defaultDialerExecutorFactory);
Eric Erfanianccca3152017-02-22 16:32:36 -080028}