1a17a5b814f1c578df28cd5d444bd8abc3adbbba0Jeff Brown/*
2a17a5b814f1c578df28cd5d444bd8abc3adbbba0Jeff Brown * Copyright (C) 2012 The Android Open Source Project
3a17a5b814f1c578df28cd5d444bd8abc3adbbba0Jeff Brown *
4a17a5b814f1c578df28cd5d444bd8abc3adbbba0Jeff Brown * Licensed under the Apache License, Version 2.0 (the "License");
5a17a5b814f1c578df28cd5d444bd8abc3adbbba0Jeff Brown * you may not use this file except in compliance with the License.
6a17a5b814f1c578df28cd5d444bd8abc3adbbba0Jeff Brown * You may obtain a copy of the License at
7a17a5b814f1c578df28cd5d444bd8abc3adbbba0Jeff Brown *
8a17a5b814f1c578df28cd5d444bd8abc3adbbba0Jeff Brown *      http://www.apache.org/licenses/LICENSE-2.0
9a17a5b814f1c578df28cd5d444bd8abc3adbbba0Jeff Brown *
10a17a5b814f1c578df28cd5d444bd8abc3adbbba0Jeff Brown * Unless required by applicable law or agreed to in writing, software
11a17a5b814f1c578df28cd5d444bd8abc3adbbba0Jeff Brown * distributed under the License is distributed on an "AS IS" BASIS,
12a17a5b814f1c578df28cd5d444bd8abc3adbbba0Jeff Brown * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13a17a5b814f1c578df28cd5d444bd8abc3adbbba0Jeff Brown * See the License for the specific language governing permissions and
14a17a5b814f1c578df28cd5d444bd8abc3adbbba0Jeff Brown * limitations under the License.
15a17a5b814f1c578df28cd5d444bd8abc3adbbba0Jeff Brown */
16a17a5b814f1c578df28cd5d444bd8abc3adbbba0Jeff Brown
17a17a5b814f1c578df28cd5d444bd8abc3adbbba0Jeff Brownpackage com.android.settings.bluetooth;
18a17a5b814f1c578df28cd5d444bd8abc3adbbba0Jeff Brown
19a17a5b814f1c578df28cd5d444bd8abc3adbbba0Jeff Brownimport com.android.settings.ProgressCategory;
20a17a5b814f1c578df28cd5d444bd8abc3adbbba0Jeff Brownimport com.android.settings.R;
21a17a5b814f1c578df28cd5d444bd8abc3adbbba0Jeff Brown
22a17a5b814f1c578df28cd5d444bd8abc3adbbba0Jeff Brownimport android.content.Context;
23a17a5b814f1c578df28cd5d444bd8abc3adbbba0Jeff Brownimport android.util.AttributeSet;
24a17a5b814f1c578df28cd5d444bd8abc3adbbba0Jeff Brown
25a17a5b814f1c578df28cd5d444bd8abc3adbbba0Jeff Brownpublic class BluetoothProgressCategory extends ProgressCategory {
26a17a5b814f1c578df28cd5d444bd8abc3adbbba0Jeff Brown    public BluetoothProgressCategory(Context context, AttributeSet attrs) {
27a17a5b814f1c578df28cd5d444bd8abc3adbbba0Jeff Brown        super(context, attrs, R.string.bluetooth_no_devices_found);
28a17a5b814f1c578df28cd5d444bd8abc3adbbba0Jeff Brown    }
29a17a5b814f1c578df28cd5d444bd8abc3adbbba0Jeff Brown}
30