blob: 0b066aa0494af6bafefd9213cca465d66ff05c59 [file] [log] [blame]
Wei Jia53692fa2017-12-11 10:33:46 -08001/*
2 * Copyright 2017 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of 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,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef ANDROID_MEDIAPLAYER2ENGINECLIENT_H
18#define ANDROID_MEDIAPLAYER2ENGINECLIENT_H
19
20#include <utils/RefBase.h>
21#include <binder/Parcel.h>
22
23namespace android {
24
25class MediaPlayer2EngineClient: public RefBase
26{
27public:
Wei Jiad2bb1bd2018-02-08 09:47:37 -080028 virtual void notify(int64_t srcId, int msg, int ext1, int ext2, const Parcel *obj) = 0;
Wei Jia53692fa2017-12-11 10:33:46 -080029};
30
31}; // namespace android
32
33#endif // ANDROID_MEDIAPLAYER2ENGINECLIENT_H