aimitakeshi | 27ed8ad | 2010-07-29 10:12:27 +0900 | [diff] [blame^] | 1 | /* |
| 2 | * Copyright (C) 2010 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 __DRM_IO_SERVICE_H__ |
| 18 | #define __DRM_IO_SERVICE_H__ |
| 19 | |
| 20 | #include "IDrmIOService.h" |
| 21 | |
| 22 | namespace android { |
| 23 | |
| 24 | /** |
| 25 | * This is the implementation class for DRM IO service. |
| 26 | * |
| 27 | * The instance of this class is created while starting the DRM IO service. |
| 28 | * |
| 29 | */ |
| 30 | class DrmIOService : public BnDrmIOService { |
| 31 | public: |
| 32 | static void instantiate(); |
| 33 | |
| 34 | private: |
| 35 | DrmIOService(); |
| 36 | virtual ~DrmIOService(); |
| 37 | |
| 38 | public: |
| 39 | void writeToFile(const String8& filePath, const String8& dataBuffer); |
| 40 | String8 readFromFile(const String8& filePath); |
| 41 | }; |
| 42 | |
| 43 | }; |
| 44 | |
| 45 | #endif /* __DRM_IO_SERVICE_H__ */ |
| 46 | |