diff options
author | Glenn Kasten <gkasten@google.com> | 2013-02-01 00:39:48 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2013-02-01 00:39:48 +0000 |
commit | a416756864e2c7750d59d967ec2185532fa5c2e0 (patch) | |
tree | 8eaae79c575fa6925b9f279adcab5dd8911653da /include | |
parent | 92b2bbbb79eb89fe4262c354e8d183c2ba325111 (diff) | |
parent | 6f1c1918d0dfece10f728711b055441e4d135c73 (diff) | |
download | frameworks_av-a416756864e2c7750d59d967ec2185532fa5c2e0.zip frameworks_av-a416756864e2c7750d59d967ec2185532fa5c2e0.tar.gz frameworks_av-a416756864e2c7750d59d967ec2185532fa5c2e0.tar.bz2 |
Merge "Add media.log service based on NBLog"
Diffstat (limited to 'include')
-rw-r--r-- | include/media/IMediaLogService.h | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/include/media/IMediaLogService.h b/include/media/IMediaLogService.h new file mode 100644 index 0000000..1f5777e --- /dev/null +++ b/include/media/IMediaLogService.h @@ -0,0 +1,45 @@ +/* + * Copyright (C) 2013 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#ifndef ANDROID_IMEDIALOGSERVICE_H +#define ANDROID_IMEDIALOGSERVICE_H + +#include <binder/IInterface.h> +#include <binder/IMemory.h> +#include <binder/Parcel.h> + +namespace android { + +class IMediaLogService: public IInterface +{ +public: + DECLARE_META_INTERFACE(MediaLogService); + + virtual void registerWriter(const sp<IMemory>& shared, size_t size, const char *name) = 0; + virtual void unregisterWriter(const sp<IMemory>& shared) = 0; + +}; + +class BnMediaLogService: public BnInterface<IMediaLogService> +{ +public: + virtual status_t onTransact(uint32_t code, const Parcel& data, Parcel* reply, + uint32_t flags = 0); +}; + +} // namespace android + +#endif // ANDROID_IMEDIALOGSERVICE_H |