blob: 3587aea95c3e8330b83f5c3e384fa5f7d6fbfbca [file] [log] [blame]
Ronghua Wu231c3d12015-03-11 15:10:32 -07001/*
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 <binder/IInterface.h>
22#include <binder/Parcel.h>
23
24namespace android {
25
26class IResourceManagerClient: public IInterface
27{
28public:
29 DECLARE_META_INTERFACE(ResourceManagerClient);
30
31 virtual bool reclaimResource() = 0;
32};
33
34// ----------------------------------------------------------------------------
35
36class BnResourceManagerClient: public BnInterface<IResourceManagerClient>
37{
38public:
39 virtual status_t onTransact(uint32_t code,
40 const Parcel &data,
41 Parcel *reply,
42 uint32_t flags = 0);
43};
44
45}; // namespace android
46
47#endif // ANDROID_IRESOURCEMANAGERCLIENT_H