IResourceManagerClient.h revision 8253f44c3d0d8a7003dd2e6f728f9e3d63927727
1/*
2 * Copyright 2015 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_IRESOURCEMANAGERCLIENT_H
18#define ANDROID_IRESOURCEMANAGERCLIENT_H
19
20#include <utils/RefBase.h>
21#include <utils/String8.h>
22#include <binder/IInterface.h>
23#include <binder/Parcel.h>
24
25namespace android {
26
27class IResourceManagerClient: public IInterface
28{
29public:
30    DECLARE_META_INTERFACE(ResourceManagerClient);
31
32    virtual bool reclaimResource() = 0;
33    virtual String8 getName() = 0;
34};
35
36// ----------------------------------------------------------------------------
37
38class BnResourceManagerClient: public BnInterface<IResourceManagerClient>
39{
40public:
41    virtual status_t onTransact(uint32_t code,
42                                const Parcel &data,
43                                Parcel *reply,
44                                uint32_t flags = 0);
45};
46
47}; // namespace android
48
49#endif // ANDROID_IRESOURCEMANAGERCLIENT_H
50