12c84cfc001fb92a71811bf7384b7f865ff31ff9dDianne Hackborn/*
22c84cfc001fb92a71811bf7384b7f865ff31ff9dDianne Hackborn * Copyright (C) 2011 The Android Open Source Project
32c84cfc001fb92a71811bf7384b7f865ff31ff9dDianne Hackborn *
42c84cfc001fb92a71811bf7384b7f865ff31ff9dDianne Hackborn * Licensed under the Apache License, Version 2.0 (the "License");
52c84cfc001fb92a71811bf7384b7f865ff31ff9dDianne Hackborn * you may not use this file except in compliance with the License.
62c84cfc001fb92a71811bf7384b7f865ff31ff9dDianne Hackborn * You may obtain a copy of the License at
72c84cfc001fb92a71811bf7384b7f865ff31ff9dDianne Hackborn *
82c84cfc001fb92a71811bf7384b7f865ff31ff9dDianne Hackborn *      http://www.apache.org/licenses/LICENSE-2.0
92c84cfc001fb92a71811bf7384b7f865ff31ff9dDianne Hackborn *
102c84cfc001fb92a71811bf7384b7f865ff31ff9dDianne Hackborn * Unless required by applicable law or agreed to in writing, software
112c84cfc001fb92a71811bf7384b7f865ff31ff9dDianne Hackborn * distributed under the License is distributed on an "AS IS" BASIS,
122c84cfc001fb92a71811bf7384b7f865ff31ff9dDianne Hackborn * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
132c84cfc001fb92a71811bf7384b7f865ff31ff9dDianne Hackborn * See the License for the specific language governing permissions and
142c84cfc001fb92a71811bf7384b7f865ff31ff9dDianne Hackborn * limitations under the License.
152c84cfc001fb92a71811bf7384b7f865ff31ff9dDianne Hackborn */
162c84cfc001fb92a71811bf7384b7f865ff31ff9dDianne Hackborn
172c84cfc001fb92a71811bf7384b7f865ff31ff9dDianne Hackbornpackage com.android.frameworkperf;
182c84cfc001fb92a71811bf7384b7f865ff31ff9dDianne Hackborn
192c84cfc001fb92a71811bf7384b7f865ff31ff9dDianne Hackbornimport android.content.BroadcastReceiver;
202c84cfc001fb92a71811bf7384b7f865ff31ff9dDianne Hackbornimport android.content.Context;
212c84cfc001fb92a71811bf7384b7f865ff31ff9dDianne Hackbornimport android.content.Intent;
222c84cfc001fb92a71811bf7384b7f865ff31ff9dDianne Hackborn
232c84cfc001fb92a71811bf7384b7f865ff31ff9dDianne Hackborn/**
242c84cfc001fb92a71811bf7384b7f865ff31ff9dDianne Hackborn * Allow launching as an empty process.
252c84cfc001fb92a71811bf7384b7f865ff31ff9dDianne Hackborn */
262c84cfc001fb92a71811bf7384b7f865ff31ff9dDianne Hackbornpublic class Receiver extends BroadcastReceiver {
272c84cfc001fb92a71811bf7384b7f865ff31ff9dDianne Hackborn    @Override
282c84cfc001fb92a71811bf7384b7f865ff31ff9dDianne Hackborn    public void onReceive(Context context, Intent intent) {
292c84cfc001fb92a71811bf7384b7f865ff31ff9dDianne Hackborn    }
302c84cfc001fb92a71811bf7384b7f865ff31ff9dDianne Hackborn}
31