10baa98b5163f83a715b37e3cffe1488ac88ab049Yorke Lee/*
20baa98b5163f83a715b37e3cffe1488ac88ab049Yorke Lee * Copyright (C) 2013 The Android Open Source Project
30baa98b5163f83a715b37e3cffe1488ac88ab049Yorke Lee *
40baa98b5163f83a715b37e3cffe1488ac88ab049Yorke Lee * Licensed under the Apache License, Version 2.0 (the "License");
50baa98b5163f83a715b37e3cffe1488ac88ab049Yorke Lee * you may not use this file except in compliance with the License.
60baa98b5163f83a715b37e3cffe1488ac88ab049Yorke Lee * You may obtain a copy of the License at
70baa98b5163f83a715b37e3cffe1488ac88ab049Yorke Lee *
80baa98b5163f83a715b37e3cffe1488ac88ab049Yorke Lee *      http://www.apache.org/licenses/LICENSE-2.0
90baa98b5163f83a715b37e3cffe1488ac88ab049Yorke Lee *
100baa98b5163f83a715b37e3cffe1488ac88ab049Yorke Lee * Unless required by applicable law or agreed to in writing, software
110baa98b5163f83a715b37e3cffe1488ac88ab049Yorke Lee * distributed under the License is distributed on an "AS IS" BASIS,
120baa98b5163f83a715b37e3cffe1488ac88ab049Yorke Lee * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
130baa98b5163f83a715b37e3cffe1488ac88ab049Yorke Lee * See the License for the specific language governing permissions and
140baa98b5163f83a715b37e3cffe1488ac88ab049Yorke Lee * limitations under the License.
150baa98b5163f83a715b37e3cffe1488ac88ab049Yorke Lee */
160baa98b5163f83a715b37e3cffe1488ac88ab049Yorke Lee
170baa98b5163f83a715b37e3cffe1488ac88ab049Yorke Leepackage com.android.dialerbind;
180baa98b5163f83a715b37e3cffe1488ac88ab049Yorke Lee
190baa98b5163f83a715b37e3cffe1488ac88ab049Yorke Leeimport android.content.Context;
200baa98b5163f83a715b37e3cffe1488ac88ab049Yorke Lee
210baa98b5163f83a715b37e3cffe1488ac88ab049Yorke Leeimport com.android.dialer.database.DialerDatabaseHelper;
220baa98b5163f83a715b37e3cffe1488ac88ab049Yorke Lee
230baa98b5163f83a715b37e3cffe1488ac88ab049Yorke Lee
240baa98b5163f83a715b37e3cffe1488ac88ab049Yorke Leepublic class DatabaseHelperManager {
250baa98b5163f83a715b37e3cffe1488ac88ab049Yorke Lee    public static DialerDatabaseHelper getDatabaseHelper(Context context) {
260baa98b5163f83a715b37e3cffe1488ac88ab049Yorke Lee        return DialerDatabaseHelper.getInstance(context);
270baa98b5163f83a715b37e3cffe1488ac88ab049Yorke Lee    }
280baa98b5163f83a715b37e3cffe1488ac88ab049Yorke Lee}
29