blob: 46cf64b4a2a452d5e680feb97d5ea57a8d29ded6 [file] [log] [blame]
Mathias Agopiand0566bc2011-11-17 17:49:17 -08001/*
2 * Copyright (C) 2011 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_SURFACE_FLINGER_DISPLAY_EVENT_CONNECTION_H
18#define ANDROID_SURFACE_FLINGER_DISPLAY_EVENT_CONNECTION_H
19
20#include <stdint.h>
21#include <sys/types.h>
22
23#include <gui/IDisplayEventConnection.h>
24
25#include <utils/Errors.h>
26#include <gui/DisplayEventReceiver.h>
27
28// ---------------------------------------------------------------------------
29
30namespace android {
31
32// ---------------------------------------------------------------------------
33
34class BitTube;
35class SurfaceFlinger;
36
37// ---------------------------------------------------------------------------
38
39class DisplayEventConnection : public BnDisplayEventConnection {
40public:
41 DisplayEventConnection(const sp<SurfaceFlinger>& flinger);
42
43 status_t postEvent(const DisplayEventReceiver::Event& event);
44
45private:
46 virtual ~DisplayEventConnection();
47 virtual void onFirstRef();
48 virtual sp<BitTube> getDataChannel() const;
49
50 sp<SurfaceFlinger> const mFlinger;
51 sp<BitTube> const mChannel;
52};
53
54// ---------------------------------------------------------------------------
55
56}; // namespace android
57
58// ---------------------------------------------------------------------------
59
60#endif /* ANDROID_SURFACE_FLINGER_DISPLAY_EVENT_CONNECTION_H */