blob: aa0cd8816906ee15bfe63a8512a15bc1c6a6e70d [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>
Ronghua Wu8f9dd872015-04-23 15:24:25 -070021#include <utils/String8.h>
Ronghua Wu231c3d12015-03-11 15:10:32 -070022#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;
Ronghua Wu8f9dd872015-04-23 15:24:25 -070033 virtual String8 getName() = 0;
Ronghua Wu231c3d12015-03-11 15:10:32 -070034};
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