Home | History | Annotate | Download | only in media
      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 
     25 namespace android {
     26 
     27 class IResourceManagerClient: public IInterface
     28 {
     29 public:
     30     DECLARE_META_INTERFACE(ResourceManagerClient);
     31 
     32     virtual bool reclaimResource() = 0;
     33     virtual String8 getName() = 0;
     34 };
     35 
     36 // ----------------------------------------------------------------------------
     37 
     38 class BnResourceManagerClient: public BnInterface<IResourceManagerClient>
     39 {
     40 public:
     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