blob: 1de0823c180536a31c76da4649ed410e7ccbfaa3 [file] [log] [blame]
Dmitri Plotnikovf6d49222010-12-01 09:20:18 -08001/*
2 * Copyright (C) 2010 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
5 * use this file except in compliance with the License. You may obtain a copy of
6 * 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, WITHOUT
12 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13 * License for the specific language governing permissions and limitations under
14 * the License
15 */
16package com.android.providers.contacts;
17
Dmitri Plotnikov6d9702c2011-02-08 15:08:13 -080018import android.content.Context;
Zheng Fuaa18c232015-04-15 15:39:16 -070019import com.android.providers.contacts.aggregation.AbstractContactAggregator;
Makoto Onuki38210442012-06-27 14:22:10 -070020
Dmitri Plotnikovf6d49222010-12-01 09:20:18 -080021public class DataRowHandlerForCustomMimetype extends DataRowHandler {
22
Zheng Fuaa18c232015-04-15 15:39:16 -070023 public DataRowHandlerForCustomMimetype(Context context, ContactsDatabaseHelper dbHelper,
24 AbstractContactAggregator aggregator, String mimetype) {
Dmitri Plotnikov6d9702c2011-02-08 15:08:13 -080025 super(context, dbHelper, aggregator, mimetype);
Dmitri Plotnikovf6d49222010-12-01 09:20:18 -080026 }
27}