167bd2cd75f0615c1a08a221f2114d2acda90d1ceSan Mehat
267bd2cd75f0615c1a08a221f2114d2acda90d1ceSan Mehat/*
367bd2cd75f0615c1a08a221f2114d2acda90d1ceSan Mehat * Copyright (C) 2007 The Android Open Source Project
467bd2cd75f0615c1a08a221f2114d2acda90d1ceSan Mehat *
567bd2cd75f0615c1a08a221f2114d2acda90d1ceSan Mehat * Licensed under the Apache License, Version 2.0 (the "License");
667bd2cd75f0615c1a08a221f2114d2acda90d1ceSan Mehat * you may not use this file except in compliance with the License.
767bd2cd75f0615c1a08a221f2114d2acda90d1ceSan Mehat * You may obtain a copy of the License at
867bd2cd75f0615c1a08a221f2114d2acda90d1ceSan Mehat *
967bd2cd75f0615c1a08a221f2114d2acda90d1ceSan Mehat *      http://www.apache.org/licenses/LICENSE-2.0
1067bd2cd75f0615c1a08a221f2114d2acda90d1ceSan Mehat *
1167bd2cd75f0615c1a08a221f2114d2acda90d1ceSan Mehat * Unless required by applicable law or agreed to in writing, software
1267bd2cd75f0615c1a08a221f2114d2acda90d1ceSan Mehat * distributed under the License is distributed on an "AS IS" BASIS,
1367bd2cd75f0615c1a08a221f2114d2acda90d1ceSan Mehat * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1467bd2cd75f0615c1a08a221f2114d2acda90d1ceSan Mehat * See the License for the specific language governing permissions and
1567bd2cd75f0615c1a08a221f2114d2acda90d1ceSan Mehat * limitations under the License.
1667bd2cd75f0615c1a08a221f2114d2acda90d1ceSan Mehat */
1767bd2cd75f0615c1a08a221f2114d2acda90d1ceSan Mehat
1867bd2cd75f0615c1a08a221f2114d2acda90d1ceSan Mehatpackage com.android.server;
1967bd2cd75f0615c1a08a221f2114d2acda90d1ceSan Mehat
2067bd2cd75f0615c1a08a221f2114d2acda90d1ceSan Mehatinterface INativeDaemonConnectorCallbacks {
2167bd2cd75f0615c1a08a221f2114d2acda90d1ceSan Mehat
2267bd2cd75f0615c1a08a221f2114d2acda90d1ceSan Mehat    void onDaemonConnected();
2377b987f1a1bb6028a871de01065b94c4cfff0b5cDianne Hackborn    boolean onCheckHoldWakeLock(int code);
2467bd2cd75f0615c1a08a221f2114d2acda90d1ceSan Mehat    boolean onEvent(int code, String raw, String[] cooked);
2567bd2cd75f0615c1a08a221f2114d2acda90d1ceSan Mehat}
26